summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-87181/enum-variant.rs
blob: 3b926b90f10bbe23c293dea4a226c8d640576f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct Bar<T> {
    bar: T
}

enum Foo{
    Tup()
}
impl Foo {
    fn foo() { }
}

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