]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-eval/issue-53401.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / const-eval / issue-53401.rs
1 // check-pass
2
3 pub const STATIC_TRAIT: &dyn Test = &();
4
5 fn main() {}
6
7 pub trait Test {
8 fn test() where Self: Sized {}
9 }
10
11 impl Test for () {}