blob: 126f8a5e9042cb833dcd9c7642436939a7a9005c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
Require Import mathcomp.ssreflect.ssreflect.
From mathcomp
Require Import ssrbool.
Lemma test : False -> (bool -> False -> True -> True) -> True.
move=> F; let w := constr:(2) in apply; last w first.
- by apply: F.
- by apply: I.
by apply: true.
Qed.
|