Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
12 lines
183 B
GDScript
12 lines
183 B
GDScript
#GDTEST_OK
|
|
|
|
func test(): C.new().test("Ok"); test2()
|
|
|
|
func test2(): print("Ok 2")
|
|
|
|
class A: pass
|
|
|
|
class B extends RefCounted: pass
|
|
|
|
class C extends RefCounted: func test(x): print(x)
|