about summary refs log tree commit diff
path: root/src/test/ui/moves/move-out-of-field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/move-out-of-field.rs')
-rw-r--r--src/test/ui/moves/move-out-of-field.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/moves/move-out-of-field.rs b/src/test/ui/moves/move-out-of-field.rs
deleted file mode 100644
index 9f697db4f79..00000000000
--- a/src/test/ui/moves/move-out-of-field.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-// run-pass
-
-use std::string::String;
-
-struct StringBuffer {
-    s: String,
-}
-
-impl StringBuffer {
-    pub fn append(&mut self, v: &str) {
-        self.s.push_str(v);
-    }
-}
-
-fn to_string(sb: StringBuffer) -> String {
-    sb.s
-}
-
-pub fn main() {
-    let mut sb = StringBuffer {
-        s: String::new(),
-    };
-    sb.append("Hello, ");
-    sb.append("World!");
-    let str = to_string(sb);
-    assert_eq!(str, "Hello, World!");
-}