2022-04-25 12:23:57 -05:00

8 lines
158 B
Go

package fixture
// Sample is a struct that contains 1 exported field and 1 unexported field
type Sample struct {
ExportedFeild int
unexportedFeild int
}