summaryrefslogtreecommitdiff
path: root/test/pending/neg
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/pending/neg
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/pending/neg')
-rw-r--r--test/pending/neg/bug3189.check7
-rw-r--r--test/pending/neg/t3189.check7
-rw-r--r--test/pending/neg/t3189.scala (renamed from test/pending/neg/bug3189.scala)0
-rw-r--r--test/pending/neg/t3633/test/Test.scala8
-rw-r--r--test/pending/neg/t963.scala (renamed from test/pending/neg/bug963.scala)0
5 files changed, 11 insertions, 11 deletions
diff --git a/test/pending/neg/bug3189.check b/test/pending/neg/bug3189.check
deleted file mode 100644
index 520644fd43..0000000000
--- a/test/pending/neg/bug3189.check
+++ /dev/null
@@ -1,7 +0,0 @@
-bug3189.scala:2: error: illegal start of simple pattern
- val Array(a,b*) = ("": Any)
- ^
-bug3189.scala:3: error: ')' expected but '}' found.
-}
-^
-two errors found
diff --git a/test/pending/neg/t3189.check b/test/pending/neg/t3189.check
new file mode 100644
index 0000000000..43dd0f29a0
--- /dev/null
+++ b/test/pending/neg/t3189.check
@@ -0,0 +1,7 @@
+t3189.scala:2: error: illegal start of simple pattern
+ val Array(a,b*) = ("": Any)
+ ^
+t3189.scala:3: error: ')' expected but '}' found.
+}
+^
+two errors found
diff --git a/test/pending/neg/bug3189.scala b/test/pending/neg/t3189.scala
index 4ea4bb7581..4ea4bb7581 100644
--- a/test/pending/neg/bug3189.scala
+++ b/test/pending/neg/t3189.scala
diff --git a/test/pending/neg/t3633/test/Test.scala b/test/pending/neg/t3633/test/Test.scala
index 2c54e7b3e9..395a6be6f4 100644
--- a/test/pending/neg/t3633/test/Test.scala
+++ b/test/pending/neg/t3633/test/Test.scala
@@ -6,18 +6,18 @@ final class Test extends PackageProtected {
package another {
object Main {
- def bug1(t: Test) {
+ def t1(t: Test) {
// Can always be replicated.
println(t.foo)
}
- def bug2(t: Test) {
+ def t2(t: Test) {
// Conditions to replicate: must use -optimise, class Test must be final
println(t.bar)
//@noinline is a usable workaround
}
def main(args: Array[String]) {
- bug1(new Test)
- bug2(new Test)
+ t1(new Test)
+ t2(new Test)
}
}
}
diff --git a/test/pending/neg/bug963.scala b/test/pending/neg/t963.scala
index 430ef090e4..430ef090e4 100644
--- a/test/pending/neg/bug963.scala
+++ b/test/pending/neg/t963.scala