Fixed inconsistent lifetimes

This commit is contained in:
Eduard Urbach 2025-02-28 19:37:06 +01:00
parent a5a8f0f503
commit be6eafddf5
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
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
}