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