Fixed inconsistent lifetimes

This commit is contained in:
Eduard Urbach 2025-02-28 19:37:06 +01:00
parent efecfc3b7c
commit 6fef3bccf6
Signed by: eduard
GPG key ID: 49226B848C78F6C8
10 changed files with 41 additions and 37 deletions

View file

@ -17,4 +17,12 @@ main() {
assert i >= 0
assert i < 10
}
ten := 10
for 0..ten {
total += 1
}
assert total == ten
}