mirror of
https://github.com/godotengine/godot.git
synced 2026-04-18 18:01:29 +00:00
15 lines
187 B
GDScript
15 lines
187 B
GDScript
@warning_ignore_start("return_value_discarded")
|
|
|
|
func test():
|
|
const PATH = "../../utils.notest.gd"
|
|
|
|
preload(PATH)
|
|
preload(PATH,)
|
|
preload(
|
|
PATH
|
|
)
|
|
preload(
|
|
PATH,
|
|
)
|
|
|
|
print("OK")
|