enable tests for #2710 (#18961)

This commit is contained in:
flywind
2021-10-06 15:42:35 +08:00
committed by GitHub
parent 9fc2918314
commit cb30dc5170

View File

@@ -3,6 +3,7 @@ output: '''
proc Base
proc Child
method Base
method Child
yield Base
yield Child
12
@@ -24,8 +25,7 @@ Base.pr
Child.pr
Base.me
when false:
Child.me #<- bug #2710
Child.me #<- bug #2710
for s in Base.it: echo s
for s in Child.it: echo s #<- bug #2662