diff -r 01265301db7f -r dd0c569fa43d src/FOLP/ex/quant.ML --- a/src/FOLP/ex/quant.ML Fri Jan 13 17:39:41 2006 +0100 +++ b/src/FOLP/ex/quant.ML Sat Jan 14 17:14:06 2006 +0100 @@ -60,22 +60,22 @@ writeln"The following should fail, as they are false!"; Goal "?p : (ALL x. EX y. Q(x,y)) --> (EX y. ALL x. Q(x,y))"; -by tac handle ERROR => writeln"Failed, as expected"; +by tac handle ERROR _ => writeln"Failed, as expected"; (*Check that subgoals remain: proof failed.*) getgoal 1; Goal "?p : (EX x. Q(x)) --> (ALL x. Q(x))"; -by tac handle ERROR => writeln"Failed, as expected"; +by tac handle ERROR _ => writeln"Failed, as expected"; getgoal 1; Goal "?p : P(?a) --> (ALL x. P(x))"; -by tac handle ERROR => writeln"Failed, as expected"; +by tac handle ERROR _ => writeln"Failed, as expected"; (*Check that subgoals remain: proof failed.*) getgoal 1; Goal "?p : (P(?a) --> (ALL x. Q(x))) --> (ALL x. P(x) --> Q(x))"; -by tac handle ERROR => writeln"Failed, as expected"; +by tac handle ERROR _ => writeln"Failed, as expected"; getgoal 1;