]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/cleanup-shortcircuit.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / run-pass / cleanup-shortcircuit.rs
index 825f699601f42e75882bba4c2cb644628c51775c..76d73fd5b8705874a88652906215a51ab064c8e0 100644 (file)
 pub fn main() {
     let args = os::args();
 
-    // Here, the rvalue `~"signal"` requires cleanup. Older versions
+    // Here, the rvalue `"signal".to_owned()` requires cleanup. Older versions
     // of the code had a problem that the cleanup scope for this
-    // expression was the end of the `if`, and as the `~"signal"`
+    // expression was the end of the `if`, and as the `"signal".to_owned()`
     // expression was never evaluated, we wound up trying to clean
     // uninitialized memory.
 
-    if args.len() >= 2 && args[1] == ~"signal" {
+    if args.len() >= 2 && args[1] == "signal".to_owned() {
         // Raise a segfault.
         unsafe { *(0 as *mut int) = 0; }
     }