jdk9: support private methods in interfaces (IDEA-137918)

This commit is contained in:
Anna Kozlova
2015-03-23 17:57:12 +01:00
parent e983730fa2
commit 48db714b67
5 changed files with 16 additions and 2 deletions
@@ -0,0 +1,3 @@
interface A {
private void m() {}
}
@@ -53,4 +53,5 @@ public class LightAdvHighlightingJdk9Test extends LightDaemonAnalyzerTestCase {
}
public void testSafeVarargsApplicability() { doTest(true, false); }
public void testPrivateInInterfaces() { doTest(false, false); }
}