aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/introductionPackage/one/C.java
blob: 47fa2a0787eb050c8f18c7ccce5487fa784ba865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package one;

/** @testcase PR#548 */
public class C {
    public void publicMethod(){ }
    protected void protectedMethod(){} 
    void defaultMethod(){ }
    private void privateMethod(){ }
    public int publicInt = 1;
    protected int protectedInt = 1;
    int defaultInt = 1;
    private int privateInt = 1;
}