]> git.lizzy.rs Git - rust.git/blob - tests/ui/binop/binop-bitxor-str.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / binop / binop-bitxor-str.rs
1 // error-pattern:no implementation for `String ^ String`
2
3 fn main() { let x = "a".to_string() ^ "b".to_string(); }