class Base
@@stuff = [] of Base.class
def self.stuff
@@stuff
end
end
class T < Base
end
class A < Base
@@stuff = [A, T]
end
def dance(t : Base.class)
pp t.stuff
end
dance(A)
This errors with: Error: class variable '@@stuff' of A is already defined as Array(Base.class) in Base if you remove one of the elements from A@@stuff, but works fine with 2 or more. Why?
The reason is that when you have both T and A, the type of that array is reduced to the most common parent, i.e. Base.class. However when you only have one or the other the array is type as either A.classORT.class. Which isn’t allowed since the array was previously restricted to Base.class, which isn’t the same thing as A.class or T.class.