aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/t3507-old.scala
blob: 5f8f3644b765fb17fbb5bb3efad34342f8e170b0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                        
class A {
  object b {
    object c
  }
  def m = b.c
}

object Test {
  var a: A = new A // mutable
  val c /*: object _1.b.c forSome { val _1: A } */ = a.m // widening using existential

  def mani[T: Manifest](x: T) = ()
  mani/*[object _1.b.c]*/(c) // kaboom in manifestOfType / TreeGen.mkAttributedQualifier
  // --> _1 is not in scope here
}