summaryrefslogtreecommitdiff
path: root/test/pending/res/bug830
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/res/bug830')
-rw-r--r--test/pending/res/bug830/Bad.scala11
-rw-r--r--test/pending/res/bug830/Good.scala11
2 files changed, 0 insertions, 22 deletions
diff --git a/test/pending/res/bug830/Bad.scala b/test/pending/res/bug830/Bad.scala
deleted file mode 100644
index 17632290ff..0000000000
--- a/test/pending/res/bug830/Bad.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package test;
-trait HasNodeXXX {
- type Node <: NodeImpl;
- trait NodeImpl;
-}
-trait ScalaFlowScannerZZZ extends HasNodeXXX {
- type Node <: NodeImpl;
- trait NodeImplA extends super.NodeImpl;
- trait NodeImplB extends NodeImpl;
- trait NodeImpl extends NodeImplA with NodeImplB;
-}
diff --git a/test/pending/res/bug830/Good.scala b/test/pending/res/bug830/Good.scala
deleted file mode 100644
index 84789bfc47..0000000000
--- a/test/pending/res/bug830/Good.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package test;
-trait HasNodeXXX {
- type Node <: NodeImpl;
- trait NodeImpl;
-}
-trait ScalaFlowScannerZZZ extends HasNodeXXX {
- type Node <: NodeImpl;
- trait NodeImplA extends super.NodeImpl;
- trait NodeImplB extends super.NodeImpl;
- trait NodeImpl extends NodeImplA with NodeImplB;
-}