mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
177 B
Rust
15 lines
177 B
Rust
// aux-build:issue-3907.rs
|
|
|
|
extern crate issue_3907;
|
|
|
|
type Foo = dyn issue_3907::Foo + 'static;
|
|
|
|
struct S {
|
|
name: isize
|
|
}
|
|
|
|
fn bar(_x: Foo) {}
|
|
//~^ ERROR E0038
|
|
|
|
fn main() {}
|