blob: 8d3c15ea002b424c907829b1b279a06e914cf3eb [file] [log] [blame] [edit]
//@ check-pass
pub const STATIC_TRAIT: &dyn Test = &();
fn main() {}
pub trait Test {
fn test() where Self: Sized {}
}
impl Test for () {}