blob: c9ef5ed94b99b3956078025a8ca4228c038082aa [file] [log] [blame]
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>();
}
}