blob: 8d843cce6ace7d7941a84c3ac318cd606548404a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public interface InterfaceMembers {
private class C {}
private interface I {}
private void m();
private int x = 2;
protected class Cp {}
protected interface Ip {}
protected void mp();
protected int fp = 2;
}
|