github.com/hongwozai/go-src-1.4.3@v0.0.0-20191127132709-dc3fce3dbccb/src/go/doc/testdata/blank.1.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  VARIABLES
    20  	// 
    21  	var _ = T(55)
    22  
    23  
    24  FUNCTIONS
    25  	// 
    26  	func _()
    27  
    28  
    29  TYPES
    30  	// S has a padding field. 
    31  	type S struct {
    32  		H	uint32
    33  		_	uint8
    34  		A	uint8
    35  	}
    36  
    37  	// 
    38  	type T int
    39  
    40  	// T constants. 
    41  	const (
    42  		_	T	= iota
    43  		T1
    44  		T2
    45  	)
    46