summaryrefslogtreecommitdiff
path: root/test/pending/run/t4283/IllegalAccess.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t4283/IllegalAccess.scala')
-rw-r--r--test/pending/run/t4283/IllegalAccess.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/run/t4283/IllegalAccess.scala b/test/pending/run/t4283/IllegalAccess.scala
deleted file mode 100644
index 33039c9350..0000000000
--- a/test/pending/run/t4283/IllegalAccess.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package other
-
-object IllegalAccess {
- def main(args: Array[String]) {
- val x = (new test.ScalaBipp).make.get.asInstanceOf[test.ScalaBipp].f()
- println(x)
- val y = (new test.ScalaBipp).make.get.f()
- println(y)
- val u = (new test.ScalaBipp).make.get.asInstanceOf[test.ScalaBipp].t
- println(u)
- val v = (new test.ScalaBipp).make.get.t
- println(v)
- val sb: test.ScalaBipp = (new test.ScalaBipp).make.get
- val z = sb.t
- println(z)
- }
-}