mirror of
https://github.com/godotengine/godot.git
synced 2026-04-18 09:51:15 +00:00
9 lines
162 B
GDScript
9 lines
162 B
GDScript
# See also `parser-warnings/shadowed-constant.gd`.
|
|
|
|
const CLASS_CONSTANT = 25
|
|
|
|
func test():
|
|
const LOCAL_CONSTANT = 25
|
|
|
|
CLASS_CONSTANT = 50
|
|
LOCAL_CONSTANT = 50
|