13 lines
170 B
Rust
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) {}
|