summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-magicsymbols-repl.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-magicsymbols-repl.check')
-rw-r--r--test/files/run/reflection-magicsymbols-repl.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/reflection-magicsymbols-repl.check b/test/files/run/reflection-magicsymbols-repl.check
index 46c21dfa00..a1bee76652 100644
--- a/test/files/run/reflection-magicsymbols-repl.check
+++ b/test/files/run/reflection-magicsymbols-repl.check
@@ -17,9 +17,9 @@ scala> class A {
defined class A
scala> def test(n: Int): Unit = {
- val sig = typeOf[A] member TermName("foo" + n) typeSignature
+ val sig = typeOf[A] member TermName("foo" + n) info
val x = sig.asInstanceOf[MethodType].params.head
- println(x.typeSignature)
+ println(x.info)
}
warning: there were 1 feature warning(s); re-run with -feature for details
test: (n: Int)Unit