blob: 55c196f6decaa2e793f807c3a1e7b7d4e807de3b [file] [log] [blame]
// issue: rust-lang/rust#47446
//@ run-rustfix
//@ check-pass
#![warn(unused_attributes)]
//~^ WARN `#[no_mangle]` attribute may not be used in combination with `#[export_name]` [unused_attributes]
#[export_name = "foo"]
pub fn bar() {}
//~^ WARN `#[no_mangle]` attribute may not be used in combination with `#[export_name]` [unused_attributes]
#[export_name = "baz"]
pub fn bak() {}
fn main() {}