1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-01 00:04:58 +03:00
juvix/tests/negative/LacksTypeSig2.juvix

11 lines
102 B
Plaintext
Raw Normal View History

module LacksTypeSig2;
open import Stdlib.Prelude;
x : Nat;
y : Nat;
y := let x := 1 in 3;
end;