1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00
Files
godot/modules/gdscript/tests/scripts/analyzer/errors/extend_unknown.gd
2023-03-13 01:40:13 +02:00

9 lines
82 B
GDScript

class Foo:
pass
class Bar extends Foo.Baz:
pass
func test():
print('not ok')