mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:13:07 +00:00
9 lines
178 B
Rust
9 lines
178 B
Rust
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() {}
|