2019-07-26 21:54:25 +00:00
|
|
|
//@ run-pass
|
2023-04-09 14:11:00 +00:00
|
|
|
//@ ignore-cross-compile (needs dylibs and compiletest doesn't have a more specific header)
|
2014-04-16 18:42:22 +00:00
|
|
|
//@ aux-build:issue-13560-1.rs
|
|
|
|
//@ aux-build:issue-13560-2.rs
|
|
|
|
//@ aux-build:issue-13560-3.rs
|
|
|
|
|
|
|
|
// Regression test for issue #13560, the test itself is all in the dependent
|
|
|
|
// libraries. The fail which previously failed to compile is the one numbered 3.
|
|
|
|
|
2015-03-27 17:22:44 +00:00
|
|
|
extern crate issue_13560_2 as t2;
|
|
|
|
extern crate issue_13560_3 as t3;
|
2014-04-16 18:42:22 +00:00
|
|
|
|
|
|
|
fn main() {}
|