rust/tests/ui/consts/mir_check_nonconst.rs
2024-12-23 22:15:32 +00:00

12 lines
162 B
Rust

#![allow(dead_code)]
struct Foo { a: u8 }
fn bar() -> Foo {
Foo { a: 5 }
}
static foo: Foo = bar();
//~^ ERROR cannot call non-const function
fn main() {}