]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/two-allocators-3.rs
965e4e0e2eabeb13e41302266846c3263c89ceb5
[rust.git] / src / test / compile-fail / two-allocators-3.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:allocator1.rs
12 // error-pattern: cannot link together two allocators
13 // ignore-musl no dylibs on musl yet
14 // ignore-emscripten
15
16 // We're linking std dynamically (via -C prefer-dynamic for this test) which
17 // has an allocator and then we're also linking in a new allocator (allocator1)
18 // and this should be an error
19
20 extern crate allocator1;
21
22 fn main() {
23 }