Merge pull request #52706 from vnen/gdscript-ternary-operator-crash

GDScript: Show error when missing expression after ternary else
This commit is contained in:
Rémi Verschelde
2021-09-15 17:20:52 +02:00
committed by GitHub
3 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
func test():
var x = 1 if false else
print("oops")
print(x)

View File

@@ -0,0 +1,2 @@
GDTEST_PARSER_ERROR
Expected expression after "else".