summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/impl-for-module.rs
blob: 9004627c52374122415d3959efb1bf1c03d0249d (plain)
1
2
3
4
5
6
7
8
9
10
11
mod a {
}

trait A {
}

impl A for a { //~ ERROR expected type, found module
}

fn main() {
}