diff options
Diffstat (limited to 'test-suite/success/Check.v')
-rw-r--r-- | test-suite/success/Check.v | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/success/Check.v b/test-suite/success/Check.v new file mode 100644 index 00000000..5d183528 --- /dev/null +++ b/test-suite/success/Check.v @@ -0,0 +1,14 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) +(* Compiling the theories allows to test parsing and typing but not printing *) +(* This file tests that pretty-printing does not fail *) +(* Test of exact output is not specified *) + +Check O. +Check S. +Check nat. |