aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t3873.scala
blob: bf57999554a5682832f90d0928afbc786616078a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class A {
  class B
  def b: B = new B
}

object Test {
  def wrongf(a: A)(b: a.B): a.B = b

  val a = new A
  wrongf(a)(a.b)
  wrongf(new A)(a.b) // should not compile
}