summaryrefslogtreecommitdiff
path: root/test/files/run/t0677.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0677.scala')
-rw-r--r--test/files/run/t0677.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/run/t0677.scala b/test/files/run/t0677.scala
deleted file mode 100644
index 6c8a3a7e99..0000000000
--- a/test/files/run/t0677.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test extends App {
- class X[T: ClassManifest] {
- val a = Array.ofDim[T](3, 4)
- }
- val x = new X[String]
- x.a(1)(2) = "hello"
- assert(x.a(1)(2) == "hello")
-}