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

struct Foo(u8, i32);
impl Foo {
    fn foo() { }
}

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