mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
11 lines
105 B
Plaintext
11 lines
105 B
Plaintext
|
module UnexpectedFieldUpdate;
|
||
|
|
||
|
type T := t;
|
||
|
|
||
|
type R := mkR {
|
||
|
r : T;
|
||
|
};
|
||
|
|
||
|
f : R;
|
||
|
f := (mkR t) @R{x := 1};
|