Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
minus-string.rs
blob: eea621c5189c44fcda8e9f712580236aaebe059a [
file
] [
log
] [
blame
]
// error-pattern:cannot apply unary operator `-` to type `~str`
fn
main
()
{
-~
"foo"
;
}