summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-magicsymbols-repl.scala
blob: c006e85b3a29e1d4b11c29bf1f405d992db2cc09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  def code = """
    |import scala.reflect.runtime.universe._
    |class A {
    |  def foo1(x: Int*) = ???
    |  def foo2(x: => Int) = ???
    |  def foo3(x: Any) = ???
    |  def foo4(x: AnyRef) = ???
    |  def foo5(x: AnyVal) = ???
    |  def foo6(x: Null) = ???
    |  def foo7(x: Nothing) = ???
    |  def foo8(x: Singleton) = ???
    |}
    |def test(n: Int): Unit = {
    |  val sig = typeOf[A] member TermName("foo" + n) info
    |  val x = sig.asInstanceOf[MethodType].params.head
    |  println(x.info)
    |}
    |for (i <- 1 to 8) test(i)
    |""".stripMargin
}