summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-static-nobundle.rs
blob: e4bfe8e8e05cae507bda21f81492bf3e91ceb0f5 (plain)
1
2
3
4
5
6
#[link(name = "foo", kind = "static-nobundle")]
//~^ WARNING: library kind `static-nobundle` has been superseded by specifying modifier `-bundle` with library kind `static`
//~^^ ERROR: kind="static-nobundle" is unstable
extern "C" {}

fn main() {}