rust/tests/ui/for-loop-while/for-loop-diagnostic-span.rs
reddevilmidzy ab9d0e0ab6 moved tests
updated `tests/ui/README.md`and `src/tools/tidy/src/issues.txt`
2025-12-02 11:13:37 +09:00

9 lines
235 B
Rust

// Test that an error on a sub-expresson in a for loop has the correct span.
fn main() {
// Odd formatting to make sure we get the right span.
for t in &
foo //~ ERROR cannot find value `foo` in this scope
{
}
}