Open JSAbrahams opened 1 year ago
No check done to see if parent of a class actually exists.
class MyTuple: (Int, Int, UndefinedClass)
As long as UndefinedClass is non-existent, should give an error that it doesn't exist.
UndefinedClass
Need to check if this happens in other situations, or if this is limited to tuples.
Description of Bug
No check done to see if parent of a class actually exists.
How to Reproduce
class MyTuple: (Int, Int, UndefinedClass)
Expected behavior
As long as
UndefinedClass
is non-existent, should give an error that it doesn't exist.Additional context
Need to check if this happens in other situations, or if this is limited to tuples.