blob: 1ec8cdd424e1df175dc0987a020a3005bc836a76 [file] [log] [blame] [edit]
//@ known-bug: #114198
//@ compile-flags: -Zprint-mono-items=eager
#![feature(lazy_type_alias)]
impl Trait for Struct {}
trait Trait {
fn test(&self) {}
}
type Struct = dyn Trait + Send;
fn main() {}