From 98e9995ddd3b555aeca73f82671f86107a9ea68f Mon Sep 17 00:00:00 2001 From: michelou Date: Wed, 12 Dec 2007 17:18:49 +0000 Subject: added final modifier, commented out test for #153 --- test/files/jvm5/annotations.check | 4 ++-- test/files/run/streams.check | 4 ++-- test/files/run/streams.scala | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'test/files') diff --git a/test/files/jvm5/annotations.check b/test/files/jvm5/annotations.check index f01f31d1d9..418301331f 100644 --- a/test/files/jvm5/annotations.check +++ b/test/files/jvm5/annotations.check @@ -11,7 +11,7 @@ class Test4$Foo2 class Test4$Foo3 @test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null) -private int Test4$Foo4.x +private final int Test4$Foo4.x @test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null) public int Test4$Foo4.x() @@ -26,7 +26,7 @@ public Test4$Foo6(java.lang.String) public Test4$Foo7() @test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=constructor val) -private int Test4$Foo8.n +private final int Test4$Foo8.n @test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=constructor val) public int Test4$Foo8.n() diff --git a/test/files/run/streams.check b/test/files/run/streams.check index f36b719ac1..180217df4a 100644 --- a/test/files/run/streams.check +++ b/test/files/run/streams.check @@ -15,5 +15,5 @@ Stream() Stream(1, 2) Stream() -99999 -65536 +9999 +8192 diff --git a/test/files/run/streams.scala b/test/files/run/streams.scala index 1844fdb6ab..a4c5e132b2 100644 --- a/test/files/run/streams.scala +++ b/test/files/run/streams.scala @@ -22,7 +22,7 @@ object Test extends Application { println(s2.dropWhile(_ > 0)) println - val s3 = Stream.range(1, 100000) + val s3 = Stream.range(1, 10000) // 100000 (ticket #153: Stackoverflow) println(s3.length) // ticket #153 -- cgit v1.2.3