]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-fn-ptr.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / consts / const-fn-ptr.rs
CommitLineData
923072b8
FG
1const fn make_fn_ptr() -> fn() {
2 || {}
3}
4
5static STAT: () = make_fn_ptr()();
6//~^ ERROR function pointer
7
8const CONST: () = make_fn_ptr()();
9//~^ ERROR function pointer
10
11const fn call_ptr() {
12 make_fn_ptr()();
13 //~^ ERROR function pointer
14}
15
16fn main() {}