2017-02-08 15:15:20 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2023-01-30 12:05:12 -06:00
|
|
|
// @has foo/fn.f.html '//pre[@class="rust item-decl"]' '#[no_mangle]'
|
2017-02-08 15:15:20 -06:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn f() {}
|
|
|
|
|
2023-01-30 12:05:12 -06:00
|
|
|
// @has foo/fn.g.html '//pre[@class="rust item-decl"]' '#[export_name = "bar"]'
|
2017-02-08 15:15:20 -06:00
|
|
|
#[export_name = "bar"]
|
|
|
|
pub extern "C" fn g() {}
|
|
|
|
|
2023-01-30 12:05:12 -06:00
|
|
|
// @has foo/struct.Repr.html '//pre[@class="rust item-decl"]' '#[repr(C, align(8))]'
|
2020-03-03 17:41:32 -06:00
|
|
|
#[repr(C, align(8))]
|
|
|
|
pub struct Repr;
|