blob: 420a0ffd3cc4b38b08b7a7fafe3416896dfeab88 [file] [log] [blame]
// check-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
pub mod a {
pub struct Foo { a: usize }
}
pub mod b {
use a::Foo;
impl Foo {
fn bar(&self) { }
}
}
pub fn main() { }