Check that getcwd does not error

This commit is contained in:
Christian Poveda 2019-09-18 16:46:41 -05:00
parent 5cf90bc786
commit 6593563e46

View File

@ -0,0 +1,5 @@
// ignore-windows: TODO the windows hook is not done yet
fn main() {
std::env::current_dir().unwrap();
}