mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 00:04:58 +03:00
11 lines
102 B
Plaintext
11 lines
102 B
Plaintext
|
module LacksTypeSig2;
|
||
|
|
||
|
open import Stdlib.Prelude;
|
||
|
|
||
|
x : Nat;
|
||
|
|
||
|
y : Nat;
|
||
|
y := let x := 1 in 3;
|
||
|
|
||
|
end;
|