ibaklan
ibaklan
Consider following code ```scala package crafts object Main { def main(args: Array[String]): Unit = { val obj = new Combined println(s"obj: ${obj}") } class Combined extends SuppressToString with WrapToString abstract...
Problem occurred when I'm trying to instantiate following class (with self-type construct) by the means of anonymous class (`new Foo {...}`) ```scala type F0 = { def apply() : Unit...
After recently merged [extension methods pull request](https://github.com/lampepfl/dotty/pull/5114) it still remain issue with accessing to extension methods which apples to `this`. It is naturally expected behavior that `this.extensionMethod()` should be also...