Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/analyzer/features/cast_non_null.gd
10286 views
# https://github.com/godotengine/godot/issues/69504#issuecomment-1345725988

func test():
	print("cast to Variant == null: ", 1 as Variant == null)
	print("cast to Object == null: ", self as Object == null)