summaryrefslogtreecommitdiff
path: root/test/files/run/literals.scala
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-05-03 16:33:12 +0000
committerburaq <buraq@epfl.ch>2004-05-03 16:33:12 +0000
commit70e76c73dcb3aaedbbab912f761dbab58bbb931f (patch)
tree4a6919ebdea983c1f8d22fd3952977fae6b67cd9 /test/files/run/literals.scala
parente69136655090796dbd1eecda37215b515b7b5fe9 (diff)
downloadscala-70e76c73dcb3aaedbbab912f761dbab58bbb931f.tar.gz
scala-70e76c73dcb3aaedbbab912f761dbab58bbb931f.tar.bz2
scala-70e76c73dcb3aaedbbab912f761dbab58bbb931f.zip
added test case for unicode identifier
Diffstat (limited to 'test/files/run/literals.scala')
-rw-r--r--test/files/run/literals.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/literals.scala b/test/files/run/literals.scala
index 91d319b531..a99c7c1be7 100644
--- a/test/files/run/literals.scala
+++ b/test/files/run/literals.scala
@@ -8,6 +8,9 @@
object Test {
import java.lang.System.out;
+ /* I add a couple of Unicode identifier tests here temporarily */
+ def \u03b1\u03c1\u03b5\u03c4\u03b7 = "alpha rho epsilon tau eta";
+
def check_success[a](name: String, def closure: a, expected: a): Unit = {
out.print("test " + name);
try {