github.com/bingoohuang/gg@v0.0.0-20240325092523-45da7dee9335/pkg/defaults/internal/fixture/test.go (about)

     1  package fixture
     2  
     3  // Sample is a struct that contains 1 exported field and 1 unexported field
     4  type Sample struct {
     5  	ExportedFeild   int
     6  	unexportedFeild int // nolint:structcheck
     7  }