mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
302 B
Rust
18 lines
302 B
Rust
#![feature(return_position_impl_trait_in_trait)]
|
|
#![allow(incomplete_features)]
|
|
|
|
struct Wrapper<T>(T);
|
|
|
|
trait Foo {
|
|
fn bar() -> Wrapper<impl Sized>;
|
|
}
|
|
|
|
impl Foo for () {
|
|
fn bar() -> i32 {
|
|
//~^ ERROR method `bar` has an incompatible return type for trait
|
|
0
|
|
}
|
|
}
|
|
|
|
fn main() {}
|