summaryrefslogtreecommitdiff
path: root/test/files/run/spec-init.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-12-11 14:57:06 +0000
committerPaul Phillips <paulp@improving.org>2010-12-11 14:57:06 +0000
commit262ee3a852f278f97b083a05376de0eab96c805d (patch)
tree482c62113aeb64e1bc7170610a958d58ec60cd19 /test/files/run/spec-init.scala
parent4cfcc156f404f574451d2ddcaf62326d32d0ef95 (diff)
downloadscala-262ee3a852f278f97b083a05376de0eab96c805d.tar.gz
scala-262ee3a852f278f97b083a05376de0eab96c805d.tar.bz2
scala-262ee3a852f278f97b083a05376de0eab96c805d.zip
When was the last time -Xcheckinit was run? It ...
When was the last time -Xcheckinit was run? It must have been a long time. All these changes are to address bugs revealed by -Xcheckinit, mostly in test cases, some in the compiler. I'm guessing the partest -Xcheckinit runs are hanging the first time they run into a failure, so if it starts "working" again after this commit don't get too confident. No review.
Diffstat (limited to 'test/files/run/spec-init.scala')
-rw-r--r--test/files/run/spec-init.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/files/run/spec-init.scala b/test/files/run/spec-init.scala
index bd3428f4ea..60852245b4 100644
--- a/test/files/run/spec-init.scala
+++ b/test/files/run/spec-init.scala
@@ -5,11 +5,10 @@ class Foo[@specialized(Int) T](_x: T) {
val y = x
println(x)
println(y)
- println(z)
def baz {}
val z = y
-
+ println(z)
}
class Bar[@specialized(Int) T] {