about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-36708.rs
blob: f65f25d5dfbea6400942b118e394ddf50829f23c (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() {}