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.scala7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/files/run/repl-suppressed-warnings.scala b/test/files/run/repl-suppressed-warnings.scala
index 5ecc16f34c..2d96a8eb24 100644
--- a/test/files/run/repl-suppressed-warnings.scala
+++ b/test/files/run/repl-suppressed-warnings.scala
@@ -19,8 +19,13 @@ object o {
}
}
case class DingDangDoobie(ding: Int, dang: Int, doobie: Double)
- case class Dongoo ; case class Heyooooo ; for (x <- 1 to 10 ; val y = x ; z = y) yield x
+ case class Dongoo
+ @serializable case class Heyooooo
+
+ @deprecated("I'm an ironic deprecation warning") def f0 = 5 // where's this disappearing?
+ def f1 = scala.Math.Pi // and this?
}
+
:warnings
"""
}