- Resolving a missing property on a const enum with inline, reached an assert #2597.

This commit is contained in:
Christoffer Lerno
2025-11-25 23:48:40 +01:00
parent 869a1d93cb
commit 4f3b6f922d
3 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
module test;
enum MyEnum : const inline short
{
ITEM1,
ITEM2,
}
fn int main(String[] args)
{
$typefrom("MyEnum").oops; // #error: No method or inner struct/union 'MyEnum.oops'
return 0;
}