blob: 6f85273461af5417f12c15dbc5b36a49ccbe3723 [file] [log] [blame] [edit]
mod machine {
pub struct A {
pub b: B,
}
pub struct B {}
impl B {
pub fn f(&self) {}
}
}
pub struct Context {
pub a: machine::A,
}
pub fn ctx() -> Context {
todo!();
}