summaryrefslogtreecommitdiff
path: root/test/pending/run/t5882.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5882.scala')
-rw-r--r--test/pending/run/t5882.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/pending/run/t5882.scala b/test/pending/run/t5882.scala
deleted file mode 100644
index 47996d3068..0000000000
--- a/test/pending/run/t5882.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-// SIP-15 was revised to allow nested classes in value classes.
-// This test checks that their basic functionality.
-
-class NodeOps(val n: Any) extends AnyVal { self =>
- class Foo() { def show = self.show(n) }
- def show(x: Any) = x.toString
-}
-
-
-object Test extends App {
-
- val n = new NodeOps("abc")
- assert(new n.Foo().show == "abc")
-}