summaryrefslogtreecommitdiff
path: root/test/pending/run/t0727.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2008-04-08 08:43:09 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2008-04-08 08:43:09 +0000
commit3884f6e1ce4feff64e816e426d318f9cb10036a8 (patch)
treed53434293864c9179e41eba6b487140af7c3b95d /test/pending/run/t0727.scala
parentf9e8fbe0af78e66f2180f00e532086e68da6476e (diff)
downloadscala-3884f6e1ce4feff64e816e426d318f9cb10036a8.tar.gz
scala-3884f6e1ce4feff64e816e426d318f9cb10036a8.tar.bz2
scala-3884f6e1ce4feff64e816e426d318f9cb10036a8.zip
pending tests for 727 and 732
Diffstat (limited to 'test/pending/run/t0727.scala')
-rw-r--r--test/pending/run/t0727.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/pending/run/t0727.scala b/test/pending/run/t0727.scala
new file mode 100644
index 0000000000..9f5be7c108
--- /dev/null
+++ b/test/pending/run/t0727.scala
@@ -0,0 +1,5 @@
+object t0727 extends Application {
+ val arr = Array("foo")
+ println(arr.isInstanceOf[Array[String]])
+ println(Array("foo").isInstanceOf[Array[String]])
+}