aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3935.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3935.scala')
-rw-r--r--tests/pending/run/t3935.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/t3935.scala b/tests/pending/run/t3935.scala
deleted file mode 100644
index 84e39571c..000000000
--- a/tests/pending/run/t3935.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-object Test {
- def main(args: Array[String]): Unit = {
- val q = scala.collection.mutable.Queue[String]()
- assert(q.length == 0)
- try {
- assert(q.front != null)
- } catch {
- case _: Throwable =>
- }
- }
-}