summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-87181/empty-tuple-method.rs
blob: 96b3f8dab8da798350fc309543350bd5107bb50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct Bar<T> {
    bar: T
}

struct Foo();
impl Foo {
    fn foo(&self) { }
}

fn main() {
    let thing = Bar { bar: Foo };
    thing.bar.foo();
    //~^ ERROR no method named `foo` found for struct constructor `fn() -> Foo {Foo}` in the current scope [E0599]
}