diff options
Diffstat (limited to 'tests/ui/consts/const-fn-val.rs')
-rw-r--r-- | tests/ui/consts/const-fn-val.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/consts/const-fn-val.rs b/tests/ui/consts/const-fn-val.rs new file mode 100644 index 000000000..e5bf4757e --- /dev/null +++ b/tests/ui/consts/const-fn-val.rs @@ -0,0 +1,15 @@ +// run-pass +#![allow(non_upper_case_globals)] +#![allow(overflowing_literals)] + +fn foo() -> isize { + return 0xca7f000d; +} + +struct Bar<F> where F: FnMut() -> isize { f: F } + +static mut b : Bar<fn() -> isize> = Bar { f: foo as fn() -> isize}; + +pub fn main() { + unsafe { assert_eq!((b.f)(), 0xca7f000d); } +} |