Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
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
();
}