summaryrefslogtreecommitdiff
path: root/test/pending/res/bug830/Good.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/res/bug830/Good.scala')
-rw-r--r--test/pending/res/bug830/Good.scala11
1 files changed, 0 insertions, 11 deletions
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;
-}