8 lines
158 B
Go
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
|
|
}
|