Closed
Description
I have this piece of code:
src/main.rs:
use std::fs::create_dir;
fn main() {
create_dir("hello").expect("1");
create_dir("hello").expect("2");
}
When I tried to run it on aarch64, debug mode, I get empty output. However, I would expect the second except
to fail (provided hello
didn't exist before).
In fact, when I run the same code with cargo run --release
, this is the behavior I get:
$ cargo run --release
Finished release [optimized] target(s) in 0.04s
Running `target/release/dir-exists-aarch64`
thread 'main' panicked at '2: Os { code: 17, kind: AlreadyExists, message: "File exists" }', libcore/result.rs:945:5
note: Run with `RUST_BACKTRACE=1` for a backtrace.
I've tried it on both stable and nightly:
rustc 1.25.0 (84203cac6 2018-03-25)
binary: rustc
commit-hash: 84203cac67e65ca8640b8392348411098c856985
commit-date: 2018-03-25
host: aarch64-unknown-linux-gnu
release: 1.25.0
LLVM version: 6.0
rustc 1.27.0-nightly (428ea5f6b 2018-05-06)
binary: rustc
commit-hash: 428ea5f6b9e7c6e5ee3294fe9f105e77e89ab407
commit-date: 2018-05-06
host: aarch64-unknown-linux-gnu
release: 1.27.0-nightly
LLVM version: 6.0
Any thoughts?