summaryrefslogtreecommitdiff
path: root/test/files/pos/protected-static
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-06-06 01:00:48 +0000
committerPaul Phillips <paulp@improving.org>2011-06-06 01:00:48 +0000
commit1ebbe029dd7ba00444962c9b1493794032a17d6c (patch)
treeafa99ef296bc74ad2afe6eea557125de5932e259 /test/files/pos/protected-static
parent6ebd6c4c072209f84ed1e71dd5ca2cccadeea9c6 (diff)
downloadscala-1ebbe029dd7ba00444962c9b1493794032a17d6c.tar.gz
scala-1ebbe029dd7ba00444962c9b1493794032a17d6c.tar.bz2
scala-1ebbe029dd7ba00444962c9b1493794032a17d6c.zip
Carved out access exception for java protected ...
Carved out access exception for java protected statics, which otherwise cannot be accessed from scala. Changes close status of #1806, no review.
Diffstat (limited to 'test/files/pos/protected-static')
-rw-r--r--test/files/pos/protected-static/J.java7
-rw-r--r--test/files/pos/protected-static/JavaClass.java6
-rw-r--r--test/files/pos/protected-static/S.scala7
-rw-r--r--test/files/pos/protected-static/ScalaClass.scala6
4 files changed, 26 insertions, 0 deletions
diff --git a/test/files/pos/protected-static/J.java b/test/files/pos/protected-static/J.java
new file mode 100644
index 0000000000..502dc2c172
--- /dev/null
+++ b/test/files/pos/protected-static/J.java
@@ -0,0 +1,7 @@
+package bippy;
+
+public class J {
+ protected static String f() {
+ return "hi mom";
+ }
+} \ No newline at end of file
diff --git a/test/files/pos/protected-static/JavaClass.java b/test/files/pos/protected-static/JavaClass.java
new file mode 100644
index 0000000000..cd45a279c2
--- /dev/null
+++ b/test/files/pos/protected-static/JavaClass.java
@@ -0,0 +1,6 @@
+package bippy;
+
+public abstract class JavaClass {
+ protected static class Inner {}
+ protected abstract Inner getInner();
+}
diff --git a/test/files/pos/protected-static/S.scala b/test/files/pos/protected-static/S.scala
new file mode 100644
index 0000000000..644633546d
--- /dev/null
+++ b/test/files/pos/protected-static/S.scala
@@ -0,0 +1,7 @@
+package bippy
+
+object Test extends J {
+ def main(args: Array[String]): Unit = {
+ bippy.J.f()
+ }
+}
diff --git a/test/files/pos/protected-static/ScalaClass.scala b/test/files/pos/protected-static/ScalaClass.scala
new file mode 100644
index 0000000000..11108b890d
--- /dev/null
+++ b/test/files/pos/protected-static/ScalaClass.scala
@@ -0,0 +1,6 @@
+import bippy.JavaClass
+
+class Implementor extends JavaClass {
+ import JavaClass.Inner
+ def getInner: Inner = null
+}