Add more integration tests to the GDScript test suite

This also fixes a typo in the `bitwise_float_right_operand.gd` test.
This commit is contained in:
Hugo Locurcio
2021-09-15 19:09:34 +02:00
parent 520462e98c
commit c6ca09dc6f
30 changed files with 245 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
func test():
var x = 42
var my_lambda = func(): print(x)
my_lambda.call() # Prints "42".