5 lines
88 B
Rust
5 lines
88 B
Rust
|
// error-pattern:applying unary minus to non-numeric type str
|
||
|
|
||
|
fn main() {
|
||
|
-"foo";
|
||
|
}
|