aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-reify-nested-a1/Test_2.scala
blob: 37282cad750fc0a2e84f482bbd409e073160b4a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test extends dotty.runtime.LegacyApp{
  val q : Queryable[Any] = new Queryable[Any]
  q.map(e1 => q.map(e2=>e1))

  locally {
    val q : Queryable[Any] = new Queryable[Any]
    q.map(e1 => q.map(e2=>e1))
  }
}