summaryrefslogtreecommitdiff
path: root/test/files/pos/bug531.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-29 21:38:38 +0000
committerPaul Phillips <paulp@improving.org>2011-07-29 21:38:38 +0000
commit902c61f397069b9918f1854b8bf95a50b52c08fc (patch)
treef4c5aad4bee75936f5112064daf4501cf7c368c4 /test/files/pos/bug531.scala
parent4231a0bc06765d914790078c184c525b9b7a1ef4 (diff)
downloadscala-902c61f397069b9918f1854b8bf95a50b52c08fc.tar.gz
scala-902c61f397069b9918f1854b8bf95a50b52c08fc.tar.bz2
scala-902c61f397069b9918f1854b8bf95a50b52c08fc.zip
Disabled all the old scala.reflect._ tests whic...
Disabled all the old scala.reflect._ tests which are now crash-failing, no review.
Diffstat (limited to 'test/files/pos/bug531.scala')
-rw-r--r--test/files/pos/bug531.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/pos/bug531.scala b/test/files/pos/bug531.scala
deleted file mode 100644
index 02763e08f1..0000000000
--- a/test/files/pos/bug531.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test extends App {
- import scala.reflect._;
- def titi = {
- var truc = 0
- val tata: Code[()=>Unit] = () => {
- truc = 6
- }
- ()
- }
-}