summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-08-18 14:53:44 +0000
committerMartin Odersky <odersky@gmail.com>2008-08-18 14:53:44 +0000
commitaa43994c9648183a81cba2557dc3188ef6ca341e (patch)
tree4fb2ee654c885db2cc549a7d8ebb1d7c20cdfbdd /test/pending/run
parent98ba45e4f615bdb6b04694b3e3099cb1029679ba (diff)
downloadscala-aa43994c9648183a81cba2557dc3188ef6ca341e.tar.gz
scala-aa43994c9648183a81cba2557dc3188ef6ca341e.tar.bz2
scala-aa43994c9648183a81cba2557dc3188ef6ca341e.zip
corrected several problems with error reporting...
corrected several problems with error reporting: positions checked twice, warnings masking errors. Refined solution of forward implicits without5 result type.
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/t1044.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/pending/run/t1044.scala b/test/pending/run/t1044.scala
new file mode 100644
index 0000000000..136cc51af2
--- /dev/null
+++ b/test/pending/run/t1044.scala
@@ -0,0 +1,4 @@
+object Main extends Application{
+ val ducks = Array[AnyRef]("Huey", "Dewey", "Louie")
+ ducks.elements/*.asInstanceOf[Iterator[String]]*/
+}