summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-07 11:56:47 +0000
committerPaul Phillips <paulp@improving.org>2011-03-07 11:56:47 +0000
commit02e043c776114af40ce329a1b8741f9ae6bc5c8c (patch)
treea1f7a8a2aae97d2f047430aaebb2b8ed6e95f79b /test/files/pos
parent5f491e5d037b799476747f0dee6ea50fe87c269b (diff)
downloadscala-02e043c776114af40ce329a1b8741f9ae6bc5c8c.tar.gz
scala-02e043c776114af40ce329a1b8741f9ae6bc5c8c.tar.bz2
scala-02e043c776114af40ce329a1b8741f9ae6bc5c8c.zip
More signature fixes and tests and generally be...
More signature fixes and tests and generally being more sophisticated about our primitive squashing. These signatures belong in world-class museums but we are their shepherds for now. Closes #4317, no review.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/bug4317/J_2.java3
-rw-r--r--test/files/pos/bug4317/S_1.scala3
2 files changed, 0 insertions, 6 deletions
diff --git a/test/files/pos/bug4317/J_2.java b/test/files/pos/bug4317/J_2.java
deleted file mode 100644
index fc8f7ec476..0000000000
--- a/test/files/pos/bug4317/J_2.java
+++ /dev/null
@@ -1,3 +0,0 @@
-class J_2 {
- int bar() { return S_1.foo(String.class) ; }
-} \ No newline at end of file
diff --git a/test/files/pos/bug4317/S_1.scala b/test/files/pos/bug4317/S_1.scala
deleted file mode 100644
index 9f368ee484..0000000000
--- a/test/files/pos/bug4317/S_1.scala
+++ /dev/null
@@ -1,3 +0,0 @@
-object S_1 {
- def foo(x: Class[_ <: AnyRef]) = 0
-}