summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/issue-53401.rs
blob: 31c946c3cb7613a2dd07234a9080c88b4744ab5c (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass

pub const STATIC_TRAIT: &dyn Test = &();

fn main() {}

pub trait Test {
    fn test() where Self: Sized {}
}

impl Test for () {}