summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-java-crtp.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-09-17 18:56:09 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-09-17 18:58:28 +0200
commit22270c68a12587d0125bd4f14c9d9f4cdcdb24d5 (patch)
treeb9ebc3ffa87c93505a7d92dbe2e1cb963c99ed8a /test/files/run/reflection-java-crtp.check
parent1b8330c51055b0e83b8187ac3783eabb08d8c778 (diff)
downloadscala-22270c68a12587d0125bd4f14c9d9f4cdcdb24d5.tar.gz
scala-22270c68a12587d0125bd4f14c9d9f4cdcdb24d5.tar.bz2
scala-22270c68a12587d0125bd4f14c9d9f4cdcdb24d5.zip
refactors java reflection tests
All javac-produced artifacts are now placed into test/files/lib
Diffstat (limited to 'test/files/run/reflection-java-crtp.check')
-rw-r--r--test/files/run/reflection-java-crtp.check26
1 files changed, 1 insertions, 25 deletions
diff --git a/test/files/run/reflection-java-crtp.check b/test/files/run/reflection-java-crtp.check
index 9fd305a7af..3e5a77e93a 100644
--- a/test/files/run/reflection-java-crtp.check
+++ b/test/files/run/reflection-java-crtp.check
@@ -1,25 +1 @@
-Type in expressions to have them evaluated.
-Type :help for more information.
-
-scala>
-
-scala> import scala.reflect.runtime.universe._
-import scala.reflect.runtime.universe._
-
-scala> val enum = typeOf[SimpleEnumeration].baseClasses(1).asClass
-enum: reflect.runtime.universe.ClassSymbol = class Enum
-
-scala> // make sure that the E's in Enum<E extends Enum<E>> are represented by the same symbol
-
-scala> val e1 = enum.typeParams(0).asType
-e1: reflect.runtime.universe.TypeSymbol = type E
-
-scala> val TypeBounds(_, TypeRef(_, _, List(TypeRef(_, e2: TypeSymbol, _)))) = e1.typeSignature
-e2: reflect.runtime.universe.TypeSymbol = type E
-
-scala> println(e1 eq e2)
-true
-
-scala>
-
-scala>
+(type E,type E,true)