rust/tests/run-pass/get_current_dir.rs

7 lines
153 B
Rust
Raw Normal View History

2019-09-18 16:46:41 -05:00
// ignore-windows: TODO the windows hook is not done yet
2019-09-19 10:32:18 -05:00
// compile-flags: -Zmiri-disable-isolation
2019-09-18 16:46:41 -05:00
fn main() {
std::env::current_dir().unwrap();
}