2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:issue-3907.rs
|
|
|
|
|
2014-06-19 17:23:51 -05:00
|
|
|
extern crate issue_3907;
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
type Foo = dyn issue_3907::Foo + 'static;
|
2014-06-19 17:23:51 -05:00
|
|
|
|
|
|
|
struct S {
|
2015-01-08 04:54:35 -06:00
|
|
|
name: isize
|
2014-06-19 17:23:51 -05:00
|
|
|
}
|
|
|
|
|
2015-08-07 12:23:11 -05:00
|
|
|
fn bar(_x: Foo) {}
|
2015-12-15 03:31:58 -06:00
|
|
|
//~^ ERROR E0038
|
2014-08-06 04:59:40 -05:00
|
|
|
|
2014-06-19 17:23:51 -05:00
|
|
|
fn main() {}
|