folowup to IDEA-149950: changed "package local" to JLS-conformant "package-private"

This commit is contained in:
Alexey Kudravtsev
2016-02-18 13:53:04 +03:00
parent ced90d82dd
commit 86b6ee7f18
33 changed files with 77 additions and 77 deletions
@@ -4,7 +4,7 @@ interface i {
}
public class a implements i {
void <error descr="'ff()' in 'a' clashes with 'ff()' in 'i'; attempting to assign weaker access privileges ('package local'); was 'public'">ff</error>() {}
void <error descr="'ff()' in 'a' clashes with 'ff()' in 'i'; attempting to assign weaker access privileges ('package-private'); was 'public'">ff</error>() {}
}
class ai implements i {
public <error descr="'ff()' in 'ai' clashes with 'ff()' in 'i'; attempting to use incompatible return type">int</error> ff() { return 0;}