summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2023-01-03 21:07:20 -0500
committerAdam Scott <ascott.ca@gmail.com>2023-01-08 16:14:40 -0500
commitc45b9245ae96db5fd8b264adf8dcd396538ee0d0 (patch)
tree463cc5eda11fdd754dc799f9baf74f36d0f91abb /modules/gdscript/tests/scripts
parentfcba87e696d58912838d8a4a6987b10efa28e78f (diff)
Fix parse error using Vector{2,3,4}.INF
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/vector_inf.gd6
-rw-r--r--modules/gdscript/tests/scripts/parser/features/vector_inf.out3
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/vector_inf.gd b/modules/gdscript/tests/scripts/parser/features/vector_inf.gd
new file mode 100644
index 0000000000..039d51d9ed
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/features/vector_inf.gd
@@ -0,0 +1,6 @@
+func test():
+ var vec2: = Vector2.INF
+ var vec3: = Vector3.INF
+
+ print(vec2.x == INF)
+ print(vec3.z == INF)
diff --git a/modules/gdscript/tests/scripts/parser/features/vector_inf.out b/modules/gdscript/tests/scripts/parser/features/vector_inf.out
new file mode 100644
index 0000000000..9d111a8322
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/features/vector_inf.out
@@ -0,0 +1,3 @@
+GDTEST_OK
+true
+true