summaryrefslogtreecommitdiff
path: root/tests/ui/typeck/issue-36708.rs
blob: c9d9f2a6d5015e3ab6c0f8846d08d258787d4b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:issue-36708.rs

extern crate issue_36708 as lib;

struct Bar;

impl lib::Foo for Bar {
    fn foo<T>() {}
    //~^ ERROR E0049
}

fn main() {}