mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-26 01:13:48 +00:00
Fix for -vet
This commit is contained in:
@@ -1269,6 +1269,14 @@ range_statements_with_multiple_return_values :: proc() {
|
||||
fmt.println(val, idx);
|
||||
}
|
||||
}
|
||||
{
|
||||
it := make_my_iterator(data);
|
||||
for {
|
||||
val, _, cond := my_iterator(&it);
|
||||
if !cond do break;
|
||||
fmt.println(val);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
main :: proc() {
|
||||
|
||||
Reference in New Issue
Block a user