summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-enclosed-nested-basic.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-enclosed-nested-basic.scala')
-rw-r--r--test/files/run/reflection-enclosed-nested-basic.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/reflection-enclosed-nested-basic.scala b/test/files/run/reflection-enclosed-nested-basic.scala
index a629d8a2d0..180ac4ebee 100644
--- a/test/files/run/reflection-enclosed-nested-basic.scala
+++ b/test/files/run/reflection-enclosed-nested-basic.scala
@@ -26,7 +26,7 @@ object Test extends App {
def testNestedClass(name: String) = {
val sym = b.typeSignature.declaration(TypeName(name)).asClass
println(sym)
- val ctor = sym.typeSignature.declaration(TermName("<init>")).asMethod
+ val ctor = sym.typeSignature.declaration(nme.CONSTRUCTOR).asMethod
val ctorMirror = cm.reflectClass(sym).reflectConstructor(ctor)
val instance = ctorMirror()
println(instance)