The following are accepted .(t) ._ We don't accept .t anymore because it will conflict with the field access notation.
5 lines
126 B
Text
5 lines
126 B
Text
inductive R : ℕ → Prop
|
||
| pos : ∀p n, R (p + n)
|
||
|
||
lemma R_id : ∀n, R n → R n
|
||
| (.(p) + .(n)) (R.pos p n) := R.pos p n
|