7 lines
130 B
Text
7 lines
130 B
Text
new_frontend
|
|
|
|
structure S :=
|
|
(x : Nat) (y : Bool) (z : Nat) (w : Nat)
|
|
|
|
def g : S → S
|
|
| s@{ x := x, ..} => { s with x := x + 1 }
|