about summary refs log tree commit diff
path: root/tests/ui/consts/return-in-const-fn.rs
blob: 16e6ca7df8ae632edc68e544d51508dcd836c162 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass

// https://github.com/rust-lang/rust/issues/43754

const fn foo(x: usize) -> usize {
    return x;
}
fn main() {
    [0; foo(2)];
}