mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
269 B
Rust
21 lines
269 B
Rust
// aux-build:issue-3907.rs
|
|
|
|
extern crate issue_3907;
|
|
|
|
type Foo = dyn issue_3907::Foo;
|
|
|
|
struct S {
|
|
name: isize
|
|
}
|
|
|
|
impl Foo for S { //~ ERROR expected trait, found type alias `Foo`
|
|
fn bar() { }
|
|
}
|
|
|
|
fn main() {
|
|
let s = S {
|
|
name: 0
|
|
};
|
|
s.bar();
|
|
}
|