summaryrefslogtreecommitdiff
path: root/theories/Logic/SetIsType.v
blob: afa85514eb3f425dbf05aa3e30167efc07e64f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(************************************************************************)
(*         *   The Coq Proof Assistant / The Coq Development Team       *)
(*  v      *   INRIA, CNRS and contributors - Copyright 1999-2018       *)
(* <O___,, *       (see CREDITS file for the list of authors)           *)
(*   \VV/  **************************************************************)
(*    //   *    This file is distributed under the terms of the         *)
(*         *     GNU Lesser General Public License Version 2.1          *)
(*         *     (see LICENSE file for the text of the license)         *)
(************************************************************************)

(** * The Set universe seen as a synonym for Type *)

(** After loading this file, Set becomes just another name for Type.
    This allows easily performing a Set-to-Type migration, or at least
    test whether a development relies or not on specific features of
    Set: simply insert some Require Export of this file at starting
    points of the development and try to recompile...  *)

Notation "'Set'" := Type (only parsing).