summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/warnings/standalone_ternary.gd
blob: 9b296e02e1935569c3471d8f8e2f5f1342fb7147 (plain)
1
2
3
func test():
	1 if true else 2
	print(1) if true else print(2)