about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/issue-53401.rs
blob: 8d3c15ea002b424c907829b1b279a06e914cf3eb (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 () {}