rust/tests/ui/impl-trait/in-trait/specialization-substs-remap.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
340 B
Rust
Raw Normal View History

2022-11-01 01:36:50 +00:00
//@ check-pass
#![feature(specialization)]
2023-09-13 16:04:42 +00:00
#![feature(lint_reasons)]
2022-11-01 01:36:50 +00:00
#![allow(incomplete_features)]
pub trait Foo {
2022-11-01 01:36:50 +00:00
fn bar(&self) -> impl Sized;
}
impl<U> Foo for U
where
U: Copy,
{
#[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();
}