summaryrefslogtreecommitdiff
path: root/test/files/pos/t0695
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2008-10-28 22:39:53 +0000
committerPhilipp Haller <hallerp@gmail.com>2008-10-28 22:39:53 +0000
commit7e8f7199a1f2ea097243295eeb61c1a2e6155c66 (patch)
treee1e9289df3bd068693c5c690f58609eb845d67ec /test/files/pos/t0695
parentc59f026df158ffc56277822265edfc8ff247348b (diff)
downloadscala-7e8f7199a1f2ea097243295eeb61c1a2e6155c66.tar.gz
scala-7e8f7199a1f2ea097243295eeb61c1a2e6155c66.tar.bz2
scala-7e8f7199a1f2ea097243295eeb61c1a2e6155c66.zip
Moved test requiring 1.5 javac/jvm to pos5.
Diffstat (limited to 'test/files/pos/t0695')
-rw-r--r--test/files/pos/t0695/JavaClass.java5
-rw-r--r--test/files/pos/t0695/Test.scala3
2 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/t0695/JavaClass.java b/test/files/pos/t0695/JavaClass.java
deleted file mode 100644
index a765f7e324..0000000000
--- a/test/files/pos/t0695/JavaClass.java
+++ /dev/null
@@ -1,5 +0,0 @@
-public class JavaClass<A> {
- class InnerClass {
- public A method() { return null; }
- }
-}
diff --git a/test/files/pos/t0695/Test.scala b/test/files/pos/t0695/Test.scala
deleted file mode 100644
index 7318867bf7..0000000000
--- a/test/files/pos/t0695/Test.scala
+++ /dev/null
@@ -1,3 +0,0 @@
-object Test extends JavaClass[AnyRef] {
- var field: InnerClass = null
-}