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