class Continuation { public static Continuation CallCC (object f) { return null; } } class Driver { static Continuation myTry (B f, A x) { return Continuation.CallCC (null); } public static void Main() { myTry (3, 7); } }