rust/tests/ui/directory_ownership/non-inline-mod-restriction.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
151 B
Rust
Raw Normal View History

// Test that non-inline modules are not allowed inside blocks.
fn main() {
mod foo; //~ ERROR cannot declare a non-inline module inside a block
}