2018-07-22 19:33:04 -05:00
|
|
|
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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.
|
|
|
|
// compile-flags: -C no-prepopulate-passes
|
|
|
|
|
2018-07-22 19:33:04 -05:00
|
|
|
extern crate lib;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
lib::foo::<i32>();
|
|
|
|
}
|