summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/weak_initializer.gd
blob: c5f3ccc59e6625e3542e2c4d8f95ef2822a90bbc (plain)
1
2
3
4
5
func test():
	var bar = 1
	var foo: float = bar
	print(typeof(foo))
	print(foo is float)