aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6937.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6937.check')
-rw-r--r--tests/pending/run/t6937.check22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/pending/run/t6937.check b/tests/pending/run/t6937.check
new file mode 100644
index 000000000..5c5d4485b
--- /dev/null
+++ b/tests/pending/run/t6937.check
@@ -0,0 +1,22 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala> import scala.reflect.runtime.{universe => ru}
+import scala.reflect.runtime.{universe=>ru}
+
+scala> import scala.reflect.runtime.{currentMirror => cm}
+import scala.reflect.runtime.{currentMirror=>cm}
+
+scala> import scala.reflect.api.{Universe => ApiUniverse}
+import scala.reflect.api.{Universe=>ApiUniverse}
+
+scala> class A
+defined class A
+
+scala> lazy val apiru = ru: ApiUniverse
+apiru: scala.reflect.api.Universe = <lazy>
+
+scala> apiru.typeTag[A].in(cm)
+res0: reflect.runtime.universe.TypeTag[A] = TypeTag[A]
+
+scala> :quit