rust/tests/ui/consts/const-eval/issue-53401.rs
2024-02-16 20:02:50 +00:00

12 lines
147 B
Rust

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