/*
 * Class Comment
 */
public class Test61 {

    /*
     * Field Comment 1
     */    
    private int p;
    private int q; // Field Comment 2

    /*
     * Method Comment
     */
    public void m(int x) {
        // Comment 1
        int a = x + 2;    // Comment 6
        
        // Comment 2
        // Comment 3
        int b = x + 2;

        /* Comment 4
         */
        int c = a;
        // Comment 5 
    }
}
