2022-11-01 01:36:50 +00:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
#![feature(specialization)]
|
2023-09-07 00:45:12 +00:00
|
|
|
#![feature(return_position_impl_trait_in_trait, lint_reasons)]
|
2022-11-01 01:36:50 +00:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
2023-09-07 00:45:12 +00:00
|
|
|
pub trait Foo {
|
2022-11-01 01:36:50 +00:00
|
|
|
fn bar(&self) -> impl Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<U> Foo for U
|
|
|
|
where
|
|
|
|
U: Copy,
|
|
|
|
{
|
2023-09-07 00:45:12 +00:00
|
|
|
#[expect(refining_impl_trait)]
|
2022-11-01 01:36:50 +00:00
|
|
|
fn bar(&self) -> U {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for i32 {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _: i32 = 1i32.bar();
|
|
|
|
}
|