rust/tests/ui/issues/issue-47377.rs

7 lines
98 B
Rust

// ignore-tidy-tab
fn main() {
let b = "hello";
let _a = b + ", World!";
//~^ ERROR E0369
}