aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-reify-chained1/Test_2.scala
blob: 01a021893ce82902759d0bf38a6e8330c3f230bf (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(x => x).map(x => x)

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