mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 15:56:39 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
const fn foo() { (||{})() }
|
|
//~^ ERROR cannot call non-const closure
|
|
|
|
const fn bad(input: fn()) {
|
|
input()
|
|
//~^ ERROR function pointer calls are not allowed
|
|
}
|
|
|
|
fn main() {
|
|
}
|