summary refs log tree commit diff
path: root/src/test/ui/allocator/two-allocators.stderr
blob: ed0aa13eb8078e6bce1bace25afc41b5c8d7d210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: cannot define multiple global allocators
  --> $DIR/two-allocators.rs:6:1
   |
LL | static B: System = System;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the previous global allocator is defined here
  --> $DIR/two-allocators.rs:4:1
   |
LL | static A: System = System;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error