C++: Add 'range(x)' call demonstrating missing bounds.

This commit is contained in:
Mathias Vorreiter Pedersen
2023-03-16 17:08:53 +00:00
parent a9e5b34ad6
commit 406d02253d

View File

@@ -119,6 +119,7 @@ int test9(int x, int y) {
}
range(x); // $ range=>=4
}
range(x); // $ MISSING: range=>=4
return x;
}