summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0446.rs
blob: 33bd6144716c881fceaf40010f372f281e0d2d98 (plain)
1
2
3
4
5
6
7
8
9
mod Foo {
    struct Bar(u32);

    pub fn bar() -> Bar { //~ ERROR E0446
        Bar(0)
    }
}

fn main() {}