Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
minus-string.rs
blob: 8d9b8d8bbf49e1c503dd0e525976cc102b666f4d [
file
]
//@ error-pattern:cannot apply unary operator `-` to type `String`
fn
main
()
{
-
"foo"
.
to_string
();
}