summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.gd
blob: a1a9e350b064da91e30149b13facf148a3ade2f6 (plain)
1
2
3
4
5
6
func test():
	# Validated native static call with return value.
	print(FileAccess.file_exists("some_file"))

	# Validated native static call without return value.
	Node.print_orphan_nodes()