]> git.proxmox.com Git - rustc.git/blob - tests/ui/traits/impl-for-module.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / traits / impl-for-module.rs
1 mod a {
2 }
3
4 trait A {
5 }
6
7 impl A for a { //~ ERROR expected type, found module
8 }
9
10 fn main() {
11 }