summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binop/binop-bitxor-str.rs
blob: 3085cce3f3ef7206c52017d1ea1791ad206e179f (plain)
1
2
3
// error-pattern:no implementation for `String ^ String`

fn main() { let x = "a".to_string() ^ "b".to_string(); }