rust/src/test/ui/binop/binop-bitxor-str.stderr

12 lines
442 B
Plaintext
Raw Normal View History

2019-12-10 15:03:13 -06:00
error[E0369]: no implementation for `std::string::String ^ std::string::String`
--> $DIR/binop-bitxor-str.rs:3:37
2018-08-08 07:28:26 -05:00
|
LL | fn main() { let x = "a".to_string() ^ "b".to_string(); }
| --------------- ^ --------------- std::string::String
| |
| std::string::String
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.