
We can never supply a meaningful implementation of this. Instead, the follow up commits will create two intrinsics that approximate comparisons: * `ptr_maybe_eq` * `ptr_maybe_ne` The fact that `ptr_maybe_eq(a, b)` is not necessarily the same value as `!ptr_maybe_ne(a, b)` is a symptom of this entire problem.
19 lines
428 B
Rust
19 lines
428 B
Rust
#![feature(const_generics)]
|
|
//~^ WARN the feature `const_generics` is incomplete
|
|
|
|
fn function() -> u32 {
|
|
17
|
|
}
|
|
|
|
struct Wrapper<const F: fn() -> u32>; //~ ERROR: using function pointers as const generic parameters
|
|
|
|
impl<const F: fn() -> u32> Wrapper<F> {
|
|
//~^ ERROR: using function pointers as const generic parameters
|
|
fn call() -> u32 {
|
|
F()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(Wrapper::<function>::call(), 17);
|
|
}
|