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

14 lines
478 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 A: System = System;
| -------------------------- previous global allocator defined here
2019-11-25 20:27:50 +00:00
LL | #[global_allocator]
LL | static B: System = System;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot define a new global allocator
|
= note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: aborting due to previous error