blob: 376c1a9cd66277f94a5936af6559aac8bc0a305e [file] [log] [blame]
// Test that macro-expanded non-inline modules behave correctly
macro_rules! mod_decl {
($i:ident) => { mod $i; } //~ ERROR Cannot declare a non-inline module inside a block
}
mod macro_expanded_mod_helper {
mod_decl!(foo); // This should search in the folder `macro_expanded_mod_helper`
}
fn main() {
mod_decl!(foo);
}