]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/min_const_fn/cmp_fn_pointers.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / min_const_fn / cmp_fn_pointers.rs
1 const fn cmp(x: fn(), y: fn()) -> bool {
2 unsafe { x == y }
3 //~^ ERROR can't compare
4 }
5
6 fn main() {}