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