From 1ebbe029dd7ba00444962c9b1493794032a17d6c Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 6 Jun 2011 01:00:48 +0000 Subject: 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. --- test/files/pos/protected-static/S.scala | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/files/pos/protected-static/S.scala (limited to 'test/files/pos/protected-static/S.scala') 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() + } +} -- cgit v1.2.3