os-rust/tests/ui/issues/issue-47380.rs

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

6 lines
119 B
Rust
Raw Normal View History

2018-01-17 02:00:09 +05:30
fn main() {
2018-01-13 17:13:18 +05:30
let b = "hello";
2018-01-17 01:31:21 +05:30
println!("🦀🦀🦀🦀🦀"); let _a = b + ", World!";
//~^ ERROR E0369
}