summaryrefslogtreecommitdiff
path: root/test/files/pos/t5742.scala
blob: 3d3125b5d3b86e542494357a1046f7e3229030bc (plain) (blame)
1
2
3
4
5
6
7
8
import scala.reflect.runtime.universe._

object Test extends App {
  def foo[T](a: T) = reify {
    val x1 = a
    val x2 = reify(a)
  }
}