4f2e0c6d7f
The new command provides a uniform way to set declaration attributes. It replaces the commands: class, instance, coercion, multiple_instances, reducible, irreducible
11 lines
187 B
Text
11 lines
187 B
Text
namespace bla
|
|
section
|
|
private definition foo : inhabited Prop :=
|
|
inhabited.mk false
|
|
|
|
attribute foo [instance] [priority 1000]
|
|
|
|
example : default Prop = false :=
|
|
rfl
|
|
end
|
|
end bla
|