summaryrefslogblamecommitdiff
path: root/test/files/run/reflection-magicsymbols-repl.scala
blob: 6a432c26646cf03640bc8f9212ed6f5969d0d2f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                            
                                                                   





                                                       
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) typeSignature
    |  val x = sig.asInstanceOf[MethodType].params.head
    |  println(x.typeSignature)
    |}
    |for (i <- 1 to 8) test(i)
    |""".stripMargin
}