alsoijw
Results
3
comments of
alsoijw
@asterite, What is now with this error? #6024 is merged, but #4303 still exist.
```crystal abstract class RootClass; end class Class1 < RootClass; end class Class2 < RootClass; end class Class3 < RootClass; end o = Class3.new case o when Class1 | Class2 puts...
>@alsoijw Someone else can probably confirm this, but I'm pretty sure that the union Class1 | Class2 is being converted into like RootClass+ @Blacksmoke16, that's right. >If you want to...