aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/lego/unsaved-goals.l
blob: 55275ecaa86f8fbc734c9d02ac666421c295a6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* 
  test case for closing off unsaved goals:
  P.G. should close Goal->Immed even though there
  is no Save.  Pred definition should not be
  part of closed region  
  (test with undoing and redoing) 
*)
   


Module unsaved Import lib_logic;

Goal {A,B:Prop}(and A B) -> (and B A);
intros;
Refine H;
intros;
andI;
Immed;

[Pred = [s:Type]s->Prop];

Goal {A,B:Prop}(and A B) -> (and B A);