summaryrefslogtreecommitdiff
path: root/test/files/neg/checksensible.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-06-03 21:41:23 +0200
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-06-03 21:41:23 +0200
commit08b7399ef4a2e01ef20259ab04512e0e20f2b04b (patch)
treef0b6a44c54b799f746af9f97260c2c6cff606013 /test/files/neg/checksensible.scala
parent8aa1d1cd210bb205e25f7618f038d646a2788fa1 (diff)
downloadscala-08b7399ef4a2e01ef20259ab04512e0e20f2b04b.tar.gz
scala-08b7399ef4a2e01ef20259ab04512e0e20f2b04b.tar.bz2
scala-08b7399ef4a2e01ef20259ab04512e0e20f2b04b.zip
Revert "#653 -- no lub for statement exprs' types"
I should not have merged this pull request yet. I didn't notice we didn't have a full successful run of the test suite. It looks like it breaks test/files/continuations-neg/lazy.scala and given the pending amount of changes, I prefer to have a stable master. This reverts commit 037d3dcbc5896864aec0f9121eeda23fcc4cd610.
Diffstat (limited to 'test/files/neg/checksensible.scala')
-rw-r--r--test/files/neg/checksensible.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/checksensible.scala b/test/files/neg/checksensible.scala
index 15a9b6d9b6..27ee908153 100644
--- a/test/files/neg/checksensible.scala
+++ b/test/files/neg/checksensible.scala
@@ -63,7 +63,7 @@ class EqEqRefTest {
new Exception() != new Exception()
val foo: Array[String] = Array("1","2","3")
- val dummy = if (foo.length == null) "plante" else "plante pas"
+ if (foo.length == null) "plante" else "plante pas"
// final classes with default equals
val x1 = new Bip