aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5954c/A_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5954c/A_1.scala')
-rw-r--r--tests/pending/pos/t5954c/A_1.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pending/pos/t5954c/A_1.scala b/tests/pending/pos/t5954c/A_1.scala
deleted file mode 100644
index 29ad9547a..000000000
--- a/tests/pending/pos/t5954c/A_1.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-package object A {
- // these used to should be prevented by the implementation restriction
- // but are now allowed
- class B
- object B
- trait C
- object C
- case class D()
- // all the rest of these should be ok
- class E
- object F
- val g = "omg"
- var h = "wtf"
- def i = "lol"
- type j = String
- class K(val k : Int) extends AnyVal
- implicit class L(val l : Int)
-}