7 lines
110 B
Rust
7 lines
110 B
Rust
const fn cmp(x: fn(), y: fn()) -> bool {
|
|
unsafe { x == y }
|
|
//~^ ERROR pointers cannot
|
|
}
|
|
|
|
fn main() {}
|