summaryrefslogtreecommitdiff
path: root/test/files/run/repl-suppressed-warnings.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-suppressed-warnings.scala')
-rw-r--r--test/files/run/repl-suppressed-warnings.scala32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/files/run/repl-suppressed-warnings.scala b/test/files/run/repl-suppressed-warnings.scala
deleted file mode 100644
index 1a51afe34f..0000000000
--- a/test/files/run/repl-suppressed-warnings.scala
+++ /dev/null
@@ -1,32 +0,0 @@
-import scala.tools.partest.ReplTest
-
-object Test extends ReplTest {
- override def extraSettings = ""
- def code = """
-
-// "Is this thing on?" Not working on first couple
-// commands, needs investigation.
-123
-123
-123
-
-object o {
- case class Bippy()
- case class Dingus {
- def f[T](xs: TraversableOnce[T]) = xs match {
- case _: List[Int] => 1
- case _: Set[String] => 2
- case _ => xs.isInstanceOf[Iterator[Double]]
- }
- }
- case class DingDangDoobie(ding: Int, dang: Int, doobie: Double)
- case class Dongoo
- @serializable case class Heyooooo
-
- @deprecated("I'm an ironic deprecation warning") def f0 = 5 // where's this disappearing?
- def f1 = Double.Epsilon // and this?
-}
-
-:warnings
- """
-}