Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
minus-string.rs
blob: 018f0ef9ac56c37068bdddef3b7635ab779eee7b [
file
] [
log
] [
blame
]
// error-pattern:cannot apply unary operator `-` to type `String`
fn
main
()
{
-
"foo"
.
to_string
();
}