blob: e17b11c5eae1c0fa9da921c8b8b358db1c81c5cd [file] [log] [blame]
// check-pass
trait Trait {
type Assoc;
}
impl Trait for () {
type Assoc = ();
}
fn unit() -> impl Into<<() as Trait>::Assoc> {}
pub fn ice() {
Into::into(unit());
}
fn main() {}