rust/src/test/ui/issues/issue-47377.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
98 B
Rust
Raw Normal View History

2018-01-16 14:30:09 -06:00
// ignore-tidy-tab
fn main() {
2018-01-16 14:37:07 -06:00
let b = "hello";
let _a = b + ", World!";
//~^ ERROR E0369
2018-01-16 14:01:21 -06:00
}