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