rust/src/test/ui/allocator/two-allocators.stderr

15 lines
349 B
Plaintext
Raw Normal View History

error: cannot define multiple global allocators
2018-12-25 15:56:47 +00:00
--> $DIR/two-allocators.rs:6:1
2018-08-08 12:28:26 +00:00
|
LL | static B: System = System;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: the previous global allocator is defined here
--> $DIR/two-allocators.rs:4:1
|
LL | static A: System = System;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: aborting due to previous error