]> git.lizzy.rs Git - rust.git/blobdiff - tests/source/try-conversion.rs
chore: bump toolchain
[rust.git] / tests / source / try-conversion.rs
index addf2f5d5e8fa1a31fe2d92635a21a038a7dc7ba..ed83ee9e101c99b89000d0bf5ea6efbe4c59a6b5 100644 (file)
@@ -9,3 +9,10 @@ fn main() {
 fn test() {
     a?
 }
+
+fn issue1291() {
+    try!(fs::create_dir_all(&gitfiledir).chain_err(|| {
+        format!("failed to create the {} submodule directory for the workarea",
+                name)
+    }));
+}