Fix unnammed enum crash regression

This commit is contained in:
ocean (they/them) 2023-01-18 09:12:27 -05:00
parent e514e3732a
commit 4854e723be
3 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,7 @@
enum {
V1,
V2 = V1,
}
func test():
pass

View file

@ -0,0 +1 @@
GDTEST_OK