aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2956
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2956')
-rw-r--r--tests/untried/pos/t2956/BeanDefinitionVisitor.java6
-rwxr-xr-xtests/untried/pos/t2956/t2956.scala7
2 files changed, 0 insertions, 13 deletions
diff --git a/tests/untried/pos/t2956/BeanDefinitionVisitor.java b/tests/untried/pos/t2956/BeanDefinitionVisitor.java
deleted file mode 100644
index 2ff5daa25..000000000
--- a/tests/untried/pos/t2956/BeanDefinitionVisitor.java
+++ /dev/null
@@ -1,6 +0,0 @@
-import java.util.Map;
-public class BeanDefinitionVisitor {
- @SuppressWarnings("unchecked")
- protected void visitMap(Map<?, ?> mapVal) {
- }
-}
diff --git a/tests/untried/pos/t2956/t2956.scala b/tests/untried/pos/t2956/t2956.scala
deleted file mode 100755
index 33803874b..000000000
--- a/tests/untried/pos/t2956/t2956.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-import scala.collection.JavaConversions._
-
-class Outer {
- protected class Inner extends BeanDefinitionVisitor {
- protected def visitMap(mapVal: Map[_, _]): Unit = ()
- }
-}