2014-08-01 01:40:09 +00:00
------------------------------------------------------------------------------------------------------ Copyright (c) 2014 Microsoft Corporation. All rights reserved.
2014-06-30 18:44:47 +00:00
-- Released under Apache 2.0 license as described in the file LICENSE.
-- Author: Leonardo de Moura
2014-08-01 01:40:09 +00:00
----------------------------------------------------------------------------------------------------
import logic.classes.inhabited
2014-06-30 02:30:38 +00:00
inductive option (A : Type) : Type :=
| none {} : option A
| some : A → option A
2014-07-29 02:58:57 +00:00
theorem inhabited_option [instance] (A : Type) : inhabited (option A) :=
inhabited_intro none