rust/tests/ui/impl-trait/in-trait/placeholder-implied-bounds.rs
2024-02-16 20:02:50 +00:00

15 lines
182 B
Rust

//@ check-pass
pub fn main() {}
pub trait Iced {
fn get(&self) -> &impl Sized;
}
/// Impl causes ICE
impl Iced for () {
fn get(&self) -> &impl Sized {
&()
}
}