aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t7377/Client_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t7377/Client_2.scala')
-rw-r--r--tests/pending/pos/t7377/Client_2.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/pos/t7377/Client_2.scala b/tests/pending/pos/t7377/Client_2.scala
deleted file mode 100644
index 5728956cc..000000000
--- a/tests/pending/pos/t7377/Client_2.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
- M.noop(List(1) match { case Nil => 0; case (x::xs) => x })
-
- case class Foo(a: Int)
- val FooAlias: Foo.type = Foo
- M.noop(Foo(0) match { case FooAlias(_) => 0 })
-
- case class Bar()
- val BarAlias: Bar.type = Bar
- M.noop(Bar() match { case BarAlias() => 0 })
-}