blob: 077a28436df3b5a3e7a617049c0140a85fadaf7d [file] [log] [blame]
#![allow(non_camel_case_types)]
#![allow(dead_code)]
// pretty-expanded FIXME #23616
mod a {
pub mod b {
pub type t = isize;
pub fn foo() { let _x: t = 10; }
}
}
pub fn main() { }