Black Lives Matter. Support the Equal Justice Initiative.

Text file src/go/doc/testdata/g.0.golden

Documentation: go/doc/testdata

     1  // The package g is a go/doc test for mixed exported/unexported ...
     2  PACKAGE g
     3  
     4  IMPORTPATH
     5  	testdata/g
     6  
     7  FILENAMES
     8  	testdata/g.go
     9  
    10  CONSTANTS
    11  	// 
    12  	const (
    13  		A, _	= iota, iota
    14  		_, D
    15  		E, _
    16  		G, H
    17  	)
    18  
    19  
    20  VARIABLES
    21  	// 
    22  	var (
    23  		_, C2, _	= 1, 2, 3
    24  		C4, _, C6	= 4, 5, 6
    25  		_, C8, _	= 7, 8, 9
    26  	)
    27  
    28  	// 
    29  	var (
    30  		_, X = f()
    31  	)
    32  
    33  

View as plain text