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