mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
181 B
Rust
15 lines
181 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 {
|
|
&()
|
|
}
|
|
}
|