rust/tests/ui/binop/binop-bitxor-str.rs
2023-01-11 09:32:08 +00:00

4 lines
115 B
Rust

// error-pattern:no implementation for `String ^ String`
fn main() { let x = "a".to_string() ^ "b".to_string(); }