1 // error-pattern:cannot apply unary operator `-` to type `String`
2 
main()3 fn main() { -"foo".to_string(); }
4