GDScript: Add missing member type check when resolving extends

This commit is contained in:
Danil Alexeev 2023-04-10 09:54:53 +03:00
parent 78e2479ef9
commit 66279b98b6
No known key found for this signature in database
GPG key ID: 124453E157DA8DC7
7 changed files with 57 additions and 1 deletions

View file

@ -0,0 +1,9 @@
# GH-75870
var A = 1
class B extends A:
pass
func test():
pass