blob: af5a2bed6ab24bef151797620a69b587817d29ca [file] [log] [blame]
// Invariant checking doesn't ICE in some cases with errors (issue #104249).
#![feature(staged_api)] //~ ERROR module has missing stability attribute
pub mod m {} //~ ERROR module has missing stability attribute
pub mod m { //~ ERROR the name `m` is defined multiple times
mod inner {}
type Inner = u8;
}
fn main() {}