aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7868b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t7868b.scala')
-rw-r--r--tests/pending/run/t7868b.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t7868b.scala b/tests/pending/run/t7868b.scala
deleted file mode 100644
index 33d33f10a..000000000
--- a/tests/pending/run/t7868b.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object A {
- def unapply(n: Int): Option[Int] = Some(1)
-}
-
-object Test extends dotty.runtime.LegacyApp {
- import reflect.runtime.universe._
- println(reify {
- val A(x) = (0: Short)
- x
- })
-}