aboutsummaryrefslogblamecommitdiff
path: root/tests/neg/subtyping.scala
blob: 27cc0568e5cf4037c6fb66e20d7592e5b4dd37d4 (plain) (tree)
1
2
3
4
5
6
7
8
9





                 
                       
                                                          
   
                       

                                                          
   
 
class B {
  class X
}
class A extends B

object Test {
  def test1(): Unit = {
    implicitly[B#X <:< A#X] // error: no implicit argument
  }
  def test2(): Unit = {
    val a : { type T; type U } = ??? // error // error
    implicitly[a.T <:< a.U] // error: no implicit argument
  }
}