mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
5 lines
219 B
Rust
5 lines
219 B
Rust
struct Checked<const F: fn(usize) -> bool>;
|
|
//~^ ERROR function pointers as const generic parameters is forbidden
|
|
fn not_one(val: usize) -> bool { val != 1 }
|
|
const _: Checked<not_one> = Checked::<not_one>;
|
|
fn main() {}
|