## Minimized code and output ```Scala object foo { class A(n: Int) } type A = foo.A println(A(1)) ^ Not found: A ``` ## Expectation : should work as with `new` ```scala println(new A(1)) // ok ```