summary refs log tree commit diff
path: root/src/test/ui/resolve/issue-3907-2.rs
blob: 89e10ca4f2c911797045f3a77ce9272d1ef9a730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// aux-build:issue_3907.rs
extern crate issue_3907;

type Foo = issue_3907::Foo+'static;

struct S {
    name: isize
}

fn bar(_x: Foo) {}
//~^ ERROR E0038

fn main() {}