summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-equality.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-equality.scala')
-rw-r--r--test/files/run/reflection-equality.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/reflection-equality.scala b/test/files/run/reflection-equality.scala
index 40f116bb53..0416bc7726 100644
--- a/test/files/run/reflection-equality.scala
+++ b/test/files/run/reflection-equality.scala
@@ -10,9 +10,9 @@ object Test extends ReplTest {
|import scala.reflect.runtime.{ currentMirror => cm }
|def im: InstanceMirror = cm.reflect(new X)
|val cs: ClassSymbol = im.symbol
- |val ts: Type = cs.typeSignature
- |val ms: MethodSymbol = ts.declaration(TermName("methodIntIntInt")).asMethod
- |val MethodType( _, t1 ) = ms.typeSignature
+ |val ts: Type = cs.info
+ |val ms: MethodSymbol = ts.decl(TermName("methodIntIntInt")).asMethod
+ |val MethodType( _, t1 ) = ms.info
|val t2 = typeOf[scala.Int]
|t1 == t2
|t1 =:= t2