public class LambdaUnary {   
    public static void main(String argv[]) {
        float f = 7;
        simp_float.method(~f);
    }

    interface SAM_float {
        int method (float arg);
    }

    static float f = 7;
    static SAM_float simp_float = (x) -> 7;
}
