summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1737
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-08-24 17:11:55 +0000
committerPaul Phillips <paulp@improving.org>2011-08-24 17:11:55 +0000
commitb9785280a7138a2bb52060faf94807aa0d07dec1 (patch)
tree870cc1930ac3d50cd07078260f58984224dd39a5 /test/files/pos/bug1737
parent84fcf633d9ca507124806d64729cb8463bcebb69 (diff)
downloadscala-b9785280a7138a2bb52060faf94807aa0d07dec1.tar.gz
scala-b9785280a7138a2bb52060faf94807aa0d07dec1.tar.bz2
scala-b9785280a7138a2bb52060faf94807aa0d07dec1.zip
Renamed tests named bugXXX to tXXX, no review.
Diffstat (limited to 'test/files/pos/bug1737')
-rw-r--r--test/files/pos/bug1737/A.java3
-rw-r--r--test/files/pos/bug1737/B.java1
-rw-r--r--test/files/pos/bug1737/c.scala4
3 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/bug1737/A.java b/test/files/pos/bug1737/A.java
deleted file mode 100644
index ee87e29a35..0000000000
--- a/test/files/pos/bug1737/A.java
+++ /dev/null
@@ -1,3 +0,0 @@
-public interface A<T extends String> {
- T get();
-} \ No newline at end of file
diff --git a/test/files/pos/bug1737/B.java b/test/files/pos/bug1737/B.java
deleted file mode 100644
index 28a1907a04..0000000000
--- a/test/files/pos/bug1737/B.java
+++ /dev/null
@@ -1 +0,0 @@
-public abstract class B implements A {} \ No newline at end of file
diff --git a/test/files/pos/bug1737/c.scala b/test/files/pos/bug1737/c.scala
deleted file mode 100644
index 782ec18b9e..0000000000
--- a/test/files/pos/bug1737/c.scala
+++ /dev/null
@@ -1,4 +0,0 @@
-class C extends B {
- this: A[_] =>
- def get = "foo"
-} \ No newline at end of file