1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00
Files
godot/modules/gdscript/tests/scripts/analyzer/features/enum_unnamed_depend.gd
2023-01-18 09:35:48 -05:00

8 lines
44 B
GDScript

enum {
V1,
V2 = V1,
}
func test():
pass