summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/errors/missing_expression_after_ternary_else.gd
blob: 1f669353291863ffc02293c1e2228366a4658125 (plain)
1
2
3
4
func test():
	var x = 1 if false else
	print("oops")
	print(x)