mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
204 B
Rust
12 lines
204 B
Rust
// issue 53300
|
|
|
|
pub trait A {
|
|
fn add(&self, b: i32) -> i32;
|
|
}
|
|
|
|
fn addition() -> Wrapper<impl A> {}
|
|
//~^ ERROR cannot find type `Wrapper` in this scope [E0412]
|
|
|
|
fn main() {
|
|
let res = addition();
|
|
}
|