public class KadabraNodes {
    public static int foo() {
        return 1 + 2;
        /* A comment */
    }


    /* A comment replacing foo2 */


    public static int foo4() {
        return 2 + 2;
    }


    public static int foo5() {
        int a;
        a = 1 + 2;
        return a;
    }


    public static void snippetExpr() {
        String a = null;
    }

}