summaryrefslogtreecommitdiff
path: root/test/files/run/t6329_repl_bug.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-21 17:24:57 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-11-21 17:32:52 +0100
commitb27c9b84be1d63e86ca20063e9c0f3c9386b0be2 (patch)
treeac033d509ceb6095f1c8ce404c108e2e9b36721e /test/files/run/t6329_repl_bug.scala
parentc243435f113615b2f7407fbd683c93ec16c73749 (diff)
downloadscala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.tar.gz
scala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.tar.bz2
scala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.zip
SI-6329 Graduation day for pending tests for tag materialization
Two kids in the class or '6329 had to repeat the senior year, but with a little help from 76b92ef, they've finally graduated. Here's the class photo: commit 3e855661136bb6c530ef1d3a24dc83800e7f1134 Author: Eugene Burmako <xeno.by@gmail.com> Date: Thu Sep 6 22:19:56 2012 +0200 test suite for SI-6329 test/files/run/t6329_repl.check | 13 +++++++++++++ test/files/run/t6329_repl.scala | 8 ++++++++ test/files/run/t6329_repl_bug.check | 13 +++++++++++++ test/files/run/t6329_repl_bug.pending | 10 ++++++++++ test/files/run/t6329_vanilla.check | 2 ++ test/files/run/t6329_vanilla.scala | 4 ++++ test/files/run/t6329_vanilla_bug.check | 2 ++ test/files/run/t6329_vanilla_bug.pending | 7 +++++++ 8 files changed, 59 insertions(+)
Diffstat (limited to 'test/files/run/t6329_repl_bug.scala')
-rw-r--r--test/files/run/t6329_repl_bug.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t6329_repl_bug.scala b/test/files/run/t6329_repl_bug.scala
new file mode 100644
index 0000000000..9997d1771e
--- /dev/null
+++ b/test/files/run/t6329_repl_bug.scala
@@ -0,0 +1,10 @@
+import scala.tools.partest.ReplTest
+
+object Test extends ReplTest {
+ def code = """
+ |import scala.reflect.runtime.universe._
+ |import scala.reflect.runtime._
+ |classManifest[List[_]]
+ |scala.reflect.classTag[List[_]]
+ |""".stripMargin
+}