about summary refs log tree commit diff
path: root/tests/ui/typeck/minus-string.stderr
blob: d2ebcd01ff9c178361bc62a02bcd724383543209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0600]: cannot apply unary operator `-` to type `String`
  --> $DIR/minus-string.rs:6:5
   |
LL |     -"foo".to_string();
   |     ^^^^^^^^^^^^^^^^^^ cannot apply unary operator `-`
   |
note: the foreign item type `String` doesn't implement `Neg`
  --> $SRC_DIR/alloc/src/string.rs:LL:COL
   |
   = note: not implement `Neg`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0600`.