// IS_APPLICABLE: false fun applyTwice(f: (A) -> A, x: A) = f(f(x)) val x = applyTwice({ p -> p + 1 }, 40)