about summary refs log tree commit diff
path: root/tests/ui/const-generics/issues/issue-61432.rs
blob: 329bf24922e6b96d43f0a7c72a673ea5c86945ba (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass

fn promote<const N: i32>() {
    let _ = &N;
}

fn main() {
    promote::<0>();
}