Add a failing test for an inheritanc context completion issue.

This commit is contained in:
Dave Halter
2017-01-05 21:50:15 +01:00
parent 9fb2644f03
commit 89ec207f49

View File

@@ -291,3 +291,16 @@ elif 3 == flow_import.env:
#? int() str()
a
# -----------------
# Inheritance
# -----------------
class Super():
enabled = True
if enabled:
yo_dude = 4
class Sub(Super):
#? ['yo_dude']
yo_dud