aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4190.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t4190.scala')
-rw-r--r--tests/pending/run/t4190.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/pending/run/t4190.scala b/tests/pending/run/t4190.scala
deleted file mode 100644
index 0c91d62de..000000000
--- a/tests/pending/run/t4190.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-import collection.mutable._
-
-object Test extends dotty.runtime.LegacyApp {
- val x: ArrayBuffer[String] = ArrayBuffer("a", "b", "c")
- x.view map (_ + "0") foreach println
-}