sed -Ei 's/^(\s*)((private |protected )?(noncomputable )?(abbreviation|definition|meta_definition|theorem|lemma|proposition|corollary)\s+\S+\s*)((\s*\[(\S+(\s+[0-9]+)*|priority.*)\])+)\s*/\1attribute \6\n\1\2/' library/**/*.lean tests/**/*.lean sed -Ei 's/\s+$//' library/**/*.lean # remove trailing whitespace
26 lines
568 B
Text
26 lines
568 B
Text
--
|
|
set_option pp.notation false
|
|
|
|
inductive C [class] (A : Type) :=
|
|
mk : A → C A
|
|
|
|
definition val {A : Type} (c : C A) : A :=
|
|
C.rec (λa, a) c
|
|
|
|
constant magic (A : Type) : A
|
|
attribute [instance] [priority std.priority.max]
|
|
definition C_magic (A : Type) : C A :=
|
|
C.mk (magic A)
|
|
|
|
attribute [instance]
|
|
definition C_prop : C Prop :=
|
|
C.mk true
|
|
|
|
attribute [instance]
|
|
definition C_prod {A B : Type} (Ha : C A) (Hb : C B) : C (prod A B) :=
|
|
C.mk (pair (val Ha) (val Hb))
|
|
|
|
-- C_magic will be used because it has max priority
|
|
definition test : C (prod Prop Prop) := _
|
|
|
|
eval test
|