aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/checkInstantiable.scala
blob: c8b166b1ec92106df6765d69d2a1d58587958e34 (plain) (tree)
1
2
3
4
5




                                                
// check instantiable of parameterized self type
class LS[T] { self: LS[T] => }
object Test {
  new LS[Int]
}