there is a need for normalizing a relative path, so it can even result in sth like "../a/" ```rust #[test] #[should_panic] fn test_path_evaluating_to_outside_of_root_panics() { let path = Path::new(".."); let new_path = path.absolutize_from(""); } ```