Add test for extended object creation/deletion.

This commit is contained in:
Fabio Alessandrelli
2021-09-24 17:11:50 +02:00
committed by Bastiaan Olij
parent 42dd64f22f
commit 59d38a4119
4 changed files with 27 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ func _ready():
($Example as Example).simple_const_func() # Force use of ptrcall
prints("returned", $Example.return_something("some string"))
prints("returned const", $Example.return_something_const())
prints("returned ref", $Example.return_extended_ref())
prints("vararg args", $Example.varargs_func("some", "arguments", "to", "test"))
# Use properties.