virtualx-engine/modules/gdscript/tests/scripts/analyzer/features/weak_initializer.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
89 B
GDScript3
Raw Normal View History

func test():
var bar = 1
var foo: float = bar
print(typeof(foo))
print(foo is float)