diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-18 00:11:56 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-18 00:11:56 +0100 |
commit | 2ee88192f970a33ec890246306ae2e460f9d5843 (patch) | |
tree | b0407fa46066a46f6fc35598c68849c7506e25a4 /modules/gdscript/tests | |
parent | 7bf656148f7127ee397dcb8b83f04bfd5a8f2fb2 (diff) | |
parent | 1bbb2b415997cceaf292c796c28de2761ad40960 (diff) |
Merge pull request #70229 from adamscott/fix-class-lookup
Fix outer class lookup
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.gd | 12 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.out | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.gd b/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.gd new file mode 100644 index 0000000000..65c0d9dabc --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.gd @@ -0,0 +1,12 @@ +class A: + class B: + func test(): + print(A.B.D) + +class C: + class D: + pass + +func test(): + var inst = A.B.new() + inst.test() diff --git a/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.out b/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.out new file mode 100644 index 0000000000..6baed366f6 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/outer_class_lookup.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +Cannot find member "D" in base "B". |