summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/default_arg_convertable.gd
blob: d0d04897e0f26d034a772969ab340fc9434acf0c (plain)
1
2
3
4
5
6
func check(arg: float = 3):
	return typeof(arg) == typeof(3.0)

func test():
	if check():
		print('ok')