The following code: ```Rust use std::path::PathBuf; fn func(path: PathBuf) -> PathBuf { path.components().skip(1).collect() } fn main() { } ``` Produces the error of: ``` ERROR translating test::func: File "lib/AstOfLlbc.ml", line 1726, characters 8-14: Assertion failed ```