]> git.proxmox.com Git - rustc.git/blame - src/test/ui/panic-runtime/two-panic-runtimes.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / src / test / ui / panic-runtime / two-panic-runtimes.rs
CommitLineData
5869c6ff
XL
1// build-fail
2// dont-check-compiler-stderr
a7813a04 3// error-pattern:cannot link together two panic runtimes: panic_runtime_unwind and panic_runtime_unwind2
a7813a04
XL
4// aux-build:panic-runtime-unwind.rs
5// aux-build:panic-runtime-unwind2.rs
6// aux-build:panic-runtime-lang-items.rs
1a4d82fc 7
a7813a04 8#![no_std]
e74abb32 9#![no_main]
223e47cc 10
a7813a04
XL
11extern crate panic_runtime_unwind;
12extern crate panic_runtime_unwind2;
13extern crate panic_runtime_lang_items;
223e47cc 14
a7813a04 15fn main() {}