summaryrefslogtreecommitdiff
path: root/test/files/pos/bug532.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-27 19:39:38 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-27 19:39:38 +0000
commit6b46664e637ff526507bd31b5bd2fb3cea1e715e (patch)
tree33174339dc79f34e77c093f16d5a1bd7ef52cfaa /test/files/pos/bug532.scala
parenta959828b60b7bacbdeff23f0ac1b7304d416df54 (diff)
downloadscala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.tar.gz
scala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.tar.bz2
scala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.zip
Moved codification to its own phase.
Diffstat (limited to 'test/files/pos/bug532.scala')
-rw-r--r--test/files/pos/bug532.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug532.scala b/test/files/pos/bug532.scala
index bd6a4cae93..2c1adfd5b4 100644
--- a/test/files/pos/bug532.scala
+++ b/test/files/pos/bug532.scala
@@ -2,7 +2,7 @@ object Test extends Application {
import scala.reflect._;
def titi: Unit = {
var truc = 0
- val tata: TypedCode[()=>Unit] = () => {
+ val tata: Code[()=>Unit] = () => {
truc = truc + 6
}
()