aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2940/Error.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2940/Error.scala')
-rw-r--r--tests/untried/pos/t2940/Error.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/untried/pos/t2940/Error.scala b/tests/untried/pos/t2940/Error.scala
deleted file mode 100644
index 92f08f580..000000000
--- a/tests/untried/pos/t2940/Error.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-abstract class Error {
- val c: Cycle[_]
-}
-
-object Test {
- trait Quux[T] extends Cycle[Quux[T]]
- val x = new Quux[Int] { def doStuff(): Unit = { } }
-
- def main(args: Array[String]): Unit = {
-
- }
-}