]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binop/binop-bitxor-str.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / 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(); }