Merge branch 'upgrade_proofs_coq_8_11_to_8_16' into 'master'
[why3.git] / bench / check-ce / polymorphism.mlw
bloba5c5da4b706109ab1dab0462a003ede0bbdbc85a
3 module Test
5   type mono = B int
6   
7   goal gm: forall x: mono. x = B 0
9   type mono2 = C int bool
10   
11   goal gm2: forall x. x = C 0 false
13   type poly 'a = A 'a
14   
15   goal g: forall x: poly int. x = A 0 
17 end