about summary refs log tree commit diff
path: root/tests/ui/return/dont-suggest-through-inner-const.rs
blob: b2347dedd52d13ff60681e8c63e90a884b807b2a (plain)
1
2
3
4
5
6
7
8
9
const fn f() -> usize {
    //~^ ERROR mismatched types
    const FIELD: usize = loop {
        0
        //~^ ERROR mismatched types
    };
}

fn main() {}