Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
str
/
str-add-operator.rs
blob: 9c489f2091f8b8e37745c203dee486b5d7138b9d [
file
]
//! regression test for issue #47377, #47380
// ignore-tidy-tab
fn
main
()
{
let
b
=
"hello"
;
let
_a
=
b
+
", World!"
;
//~^ ERROR E0369
}