2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-10-22 11:21:55 -05:00
|
|
|
// Test for issue #18804, #[linkage] does not propagate through generic
|
2018-07-22 19:33:04 -05:00
|
|
|
// functions. Failure results in a linker error.
|
|
|
|
|
2018-07-25 06:51:32 -05:00
|
|
|
// ignore-asmjs no weak symbol support
|
|
|
|
// ignore-emscripten no weak symbol support
|
2018-12-13 04:55:43 -06:00
|
|
|
// ignore-windows no extern_weak linkage
|
|
|
|
// ignore-macos no extern_weak linkage
|
2018-07-25 06:51:32 -05:00
|
|
|
|
2018-07-22 19:33:04 -05:00
|
|
|
// aux-build:lib.rs
|
|
|
|
|
2018-12-13 04:55:43 -06:00
|
|
|
// rust-lang/rust#56772: nikic says we need this to be proper test.
|
2018-12-17 06:45:27 -06:00
|
|
|
// compile-flags: -C no-prepopulate-passes -C passes=name-anon-globals
|
2018-12-13 04:55:43 -06:00
|
|
|
|
2018-07-22 19:33:04 -05:00
|
|
|
extern crate lib;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
lib::foo::<i32>();
|
|
|
|
}
|