]> git.lizzy.rs Git - rust.git/blobdiff - tests/target/try-conversion.rs
Tidy up and pass tests
[rust.git] / tests / target / try-conversion.rs
index d4422cf9621412e8b12de8096ad87607006723ae..e16fba278d2c359e46993b1d3bb89515fddbb77f 100644 (file)
@@ -16,3 +16,12 @@ fn main() {
 fn test() {
     a?
 }
+
+fn issue1291() {
+    fs::create_dir_all(&gitfiledir).chain_err(|| {
+        format!(
+            "failed to create the {} submodule directory for the workarea",
+            name
+        )
+    })?;
+}