blob: 22822ad91be977072a048c2d78d68e0a70ae8a94 [file] [log] [blame]
// Code generated by fidlgen; DO NOT EDIT.
package name
type MyStrictEnum uint32
const (
MyStrictEnumFoo MyStrictEnum = 1
MyStrictEnumBar MyStrictEnum = 2
)
func (x MyStrictEnum) String() string {
switch x {
case 1:
return "Foo"
case 2:
return "Bar"
}
return "Unknown"
}