]> git.lizzy.rs Git - rust.git/blob - src/test/ui/allocator/function-allocator.rs
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / allocator / function-allocator.rs
1 #[global_allocator]
2 fn foo() {} //~ ERROR: allocators must be statics
3
4 fn main() {}