aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/protected-static-fail
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/protected-static-fail')
-rw-r--r--tests/untried/neg/protected-static-fail/J.java7
-rw-r--r--tests/untried/neg/protected-static-fail/S.scala10
-rw-r--r--tests/untried/neg/protected-static-fail/S0.scala9
3 files changed, 26 insertions, 0 deletions
diff --git a/tests/untried/neg/protected-static-fail/J.java b/tests/untried/neg/protected-static-fail/J.java
new file mode 100644
index 000000000..c340800d7
--- /dev/null
+++ b/tests/untried/neg/protected-static-fail/J.java
@@ -0,0 +1,7 @@
+package bippy;
+
+public class J {
+ private static String f() {
+ return "hi mom";
+ }
+} \ No newline at end of file
diff --git a/tests/untried/neg/protected-static-fail/S.scala b/tests/untried/neg/protected-static-fail/S.scala
new file mode 100644
index 000000000..f9dd89d9d
--- /dev/null
+++ b/tests/untried/neg/protected-static-fail/S.scala
@@ -0,0 +1,10 @@
+package bippy
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ J.f()
+ S1.f1()
+ val x = new S2
+ x.f2()
+ }
+}
diff --git a/tests/untried/neg/protected-static-fail/S0.scala b/tests/untried/neg/protected-static-fail/S0.scala
new file mode 100644
index 000000000..93a7bd91a
--- /dev/null
+++ b/tests/untried/neg/protected-static-fail/S0.scala
@@ -0,0 +1,9 @@
+package bippy
+
+object S1 {
+ protected def f1() = "hi mom"
+}
+
+class S2 {
+ protected def f2() = "hi mom"
+}