github.com/hongwozai/go-src-1.4.3@v0.0.0-20191127132709-dc3fce3dbccb/src/go/doc/testdata/blank.2.golden (about)

     1  // Package blank is a go/doc test for the handling of _. See issue ...
     2  PACKAGE blank
     3  
     4  IMPORTPATH
     5  	testdata/blank
     6  
     7  FILENAMES
     8  	testdata/blank.go
     9  
    10  CONSTANTS
    11  	// Package constants. 
    12  	const (
    13  		_	int	= iota
    14  		I1
    15  		I2
    16  	)
    17  
    18  
    19  TYPES
    20  	// S has a padding field. 
    21  	type S struct {
    22  		H	uint32
    23  	
    24  		A	uint8
    25  		// contains filtered or unexported fields
    26  	}
    27  
    28  	// 
    29  	type T int
    30  
    31  	// T constants. 
    32  	const (
    33  		_	T	= iota
    34  		T1
    35  		T2
    36  	)
    37