mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Const enum methods are not being recognized. #2445
This commit is contained in:
15
test/test_suite/enumerations/const_enum_methods.c3t
Normal file
15
test/test_suite/enumerations/const_enum_methods.c3t
Normal file
@@ -0,0 +1,15 @@
|
||||
module test;
|
||||
|
||||
enum Enum : const int
|
||||
{
|
||||
E0, E1
|
||||
}
|
||||
|
||||
fn void Enum.foo(self) {}
|
||||
|
||||
fn int main()
|
||||
{
|
||||
Enum e = E0;
|
||||
e.foo();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user