rust/tests/ui/consts/const-eval/issue-53401.rs
2023-01-11 09:32:08 +00:00

12 lines
146 B
Rust

// check-pass
pub const STATIC_TRAIT: &dyn Test = &();
fn main() {}
pub trait Test {
fn test() where Self: Sized {}
}
impl Test for () {}