summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/multiline_vector.gd
blob: 11a40fc00e0d2652fc3aa4a57f208f9dcff75cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
func test():
	Vector2(
		1,
		2
	)

	Vector3(
		3,
		3.5,
		4,  # Trailing comma should work.
	)

	Vector2i(1, 2,)  # Trailing comma should work.

	Vector3i(6,
	9,
		12)