summaryrefslogtreecommitdiff
path: root/test/files/pos/bug851.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-11-29 17:26:59 +0000
committerMartin Odersky <odersky@gmail.com>2006-11-29 17:26:59 +0000
commit8809b3edf2ca73f0c584507dcf09da58fddc7648 (patch)
treeff48034ee024941943f5985fd2572aa4c40620f1 /test/files/pos/bug851.scala
parentf8b32f27f6cebfa2136da27d9bb2fb1fed9b6e80 (diff)
downloadscala-8809b3edf2ca73f0c584507dcf09da58fddc7648.tar.gz
scala-8809b3edf2ca73f0c584507dcf09da58fddc7648.tar.bz2
scala-8809b3edf2ca73f0c584507dcf09da58fddc7648.zip
fixed bug851
added "Function" module to library/scala
Diffstat (limited to 'test/files/pos/bug851.scala')
-rw-r--r--test/files/pos/bug851.scala28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/files/pos/bug851.scala b/test/files/pos/bug851.scala
new file mode 100644
index 0000000000..afe4b79d3c
--- /dev/null
+++ b/test/files/pos/bug851.scala
@@ -0,0 +1,28 @@
+object test {
+ def ok1: String = {
+ val x = 1
+ """ok1"""
+ }
+ def ok2: String = {
+ val x = "0".length
+ """ok2"""
+ }
+ def ok3: String = {
+ val x = "0".length
+ """ok3
+ """//
+ }
+ def ok4: String = {
+ val x = "0".length
+ """ok4
+ """ + x
+ }
+ def bad: String = {
+ val x = "0".length
+ """bad
+ """
+ }
+ def main(args: Array[String]) {
+ Console.println(ok1 + ok2 + ok3 + ok4 + bad)
+ }
+}