lean4-htt/tests/lean/run/private_names.lean
Sebastian Ullrich 8bbcbb14cf chore(library, tests): use new attribute chaining syntax
sed -E -i 's/(attribute(\s*(\w|\.)+)* \[[^]]+)\] \[/\1, /' {library,tests}/**/*.lean  # repeat as needed
2016-08-16 13:49:03 -07:00

11 lines
186 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