summaryrefslogtreecommitdiffstats
path: root/src/test/ui/allocator/two-allocators2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/allocator/two-allocators2.rs')
-rw-r--r--src/test/ui/allocator/two-allocators2.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/allocator/two-allocators2.rs b/src/test/ui/allocator/two-allocators2.rs
deleted file mode 100644
index 6dfefe19c..000000000
--- a/src/test/ui/allocator/two-allocators2.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// aux-build:system-allocator.rs
-// no-prefer-dynamic
-// error-pattern: the `#[global_allocator]` in
-
-extern crate system_allocator;
-
-use std::alloc::System;
-
-#[global_allocator]
-static A: System = System;
-
-fn main() {}