aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6994.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6994.scala')
-rw-r--r--tests/pending/pos/t6994.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/pos/t6994.scala b/tests/pending/pos/t6994.scala
deleted file mode 100644
index d70719642..000000000
--- a/tests/pending/pos/t6994.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
- object NF {
- def unapply(t: Throwable): Option[Throwable] = None
- }
- val x = (try { None } catch { case NF(ex) => None }) getOrElse 0
- // Was emitting a spurious warning post typer:
- // "This catches all Throwables. If this is really intended, use `case ex6 : Throwable` to clear this warning."
-}