1 2 3 4 5 6 7 8 9
# GH-85882 enum Foo { A, B, C } func test(): var a := Foo.A var b := a as int + 1 print(b)