mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 21:30:56 +07:00
13 lines
215 B
Java
13 lines
215 B
Java
package a;
|
|
|
|
import b.Son;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
|
|
Son bad = new Son();
|
|
bad.<error descr="'func()' has protected access in 'b.Son'">func</error>();
|
|
|
|
}
|
|
}
|