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, 8 insertions, 0 deletions
diff --git a/tests/pending/pos/t6994.scala b/tests/pending/pos/t6994.scala
new file mode 100644
index 000000000..d70719642
--- /dev/null
+++ b/tests/pending/pos/t6994.scala
@@ -0,0 +1,8 @@
+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."
+}