about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-1717-dllimport/multiple-renames.rs
blob: 69132895510bb4bd482c7dc490bea44db95540a1 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -l foo:bar -l foo:baz

#![crate_type = "lib"]

#[link(name = "foo")]
extern "C" {}

//~? ERROR multiple renamings were specified for library `foo`