rust/tests/crashes/127804.rs
2024-09-18 00:10:25 +02:00

13 lines
170 B
Rust

//@ known-bug: #127804
struct Thing;
pub trait Every {
type Assoc;
}
impl<T: ?Sized> Every for Thing {
type Assoc = T;
}
fn foo(_: <Thing as Every>::Assoc) {}