rust/tests/ui/binop/binop-bitxor-str.rs

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

3 lines
108 B
Rust
Raw Permalink Normal View History

fn main() { let x = "a".to_string() ^ "b".to_string(); }
//~^ ERROR no implementation for `String ^ String`