summaryrefslogtreecommitdiffstats
path: root/tests/ui/const_prop/unreachable-bounds.rs
blob: 8cf98e154eaa06c7de31aba1743c74ee98cbc075 (plain)
1
2
3
4
5
6
// Use `build-pass` to ensure const-prop lint runs.
// build-pass

fn main() {
    [()][if false { 1 } else { return }]
}