diff options
Diffstat (limited to 'test-suite/success/if.v')
-rw-r--r-- | test-suite/success/if.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/success/if.v b/test-suite/success/if.v index 85cd1f11..3f763863 100644 --- a/test-suite/success/if.v +++ b/test-suite/success/if.v @@ -1,5 +1,5 @@ (* The synthesis of the elimination predicate may fail if algebric *) (* universes are not cautiously treated *) -Check [b:bool]if b then Type else nat. +Check (fun b : bool => if b then Type else nat). |