blob: 8a92f065f1bb8ca0437319e526ea43a41eba5d05 [file] [log] [blame]
// run-pass
#![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() { }