aboutsummaryrefslogtreecommitdiffstats
path: root/tests/symbols/C.java
blob: dcefa4adebfb71a3a148d315018f2fd54d8b7e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package symbols;

public class C {
    /**
     * multiline
     * comment
    */
    void MethV() { }
    public void MethVI(int i) { }
    static public synchronized void MethVLF(long l, float f) { }
    int  MethISO(String s, Object o) { return this.toString().length(); }

    public static volatile int i;
    public float f;

    static {
        i = 0;
    }

    {
        f = 1.f;
    }

}