mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
12 lines
191 B
Plaintext
12 lines
191 B
Plaintext
module test;
|
|
constdef MyEnum : inline short
|
|
{
|
|
ITEM1,
|
|
ITEM2,
|
|
}
|
|
|
|
fn int main(String[] args)
|
|
{
|
|
$typefrom("MyEnum").oops; // #error: No method or inner struct/union 'MyEnum.oops'
|
|
return 0;
|
|
} |