summaryrefslogtreecommitdiffstats
path: root/src/test/ui/allocator/not-an-allocator.rs
blob: 4a538d4d0a0d8ec6a438cbc8e6dfeee7ce918957 (plain)
1
2
3
4
5
6
7
8
#[global_allocator]
static A: usize = 0;
//~^ ERROR E0277
//~| ERROR E0277
//~| ERROR E0277
//~| ERROR E0277

fn main() {}