summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/extend_unknown.gd
blob: 0f7d584edbb7f44ae36559b2e7159fc7cf186278 (plain)
1
2
3
4
5
6
7
8
class Foo:
	pass

class Bar extends Foo.Baz:
	pass

func test():
	print('not ok')