about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0015.rs
blob: 7a80308d7bbabde964d055f4caec661b0b4e81e5 (plain)
1
2
3
4
5
6
7
8
fn create_some() -> Option<u8> {
    Some(1)
}

const FOO: Option<u8> = create_some();
//~^ ERROR cannot call non-const function `create_some` in constants [E0015]

fn main() {}