summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-04-16 11:48:04 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-04-16 11:48:04 +0000
commitf0cde59118cb35a702c58b0c6ddddbc6552ecb1f (patch)
tree92afc9f8487bb89c6f5a086c6ce029674898059c /test/pending
parent24eb581d805653215fce5f931f78789e31924800 (diff)
downloadscala-f0cde59118cb35a702c58b0c6ddddbc6552ecb1f.tar.gz
scala-f0cde59118cb35a702c58b0c6ddddbc6552ecb1f.tar.bz2
scala-f0cde59118cb35a702c58b0c6ddddbc6552ecb1f.zip
"fixed" bug 1040, re-opened as 1046
tcpoly_parseridioms no longer uses exotic method names -- exoticnames.scala is a dedicated test that I feel should pass (it doesn't)
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/exoticnames.check0
-rw-r--r--test/pending/run/exoticnames.scala7
2 files changed, 7 insertions, 0 deletions
diff --git a/test/pending/run/exoticnames.check b/test/pending/run/exoticnames.check
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/pending/run/exoticnames.check
diff --git a/test/pending/run/exoticnames.scala b/test/pending/run/exoticnames.scala
new file mode 100644
index 0000000000..7c8dcea5e8
--- /dev/null
+++ b/test/pending/run/exoticnames.scala
@@ -0,0 +1,7 @@
+// this is a run-test because the compiler should emit bytecode that'll pass the JVM's verifier
+object Test extends Application {
+ def `(` = error("bla")
+ def `.` = error("bla")
+ def `)` = error("bla")
+ def `,` = error("bla")
+} \ No newline at end of file