Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
symbol-names
/
x86-stdcall.rs
blob: 9948488c0e95032517f67ebecc1fb0a5f8883318 [
file
] [
log
] [
blame
]
// build-pass
// only-x86-windows
#![
crate_type
=
"cdylib"
]
#![
feature
(
abi_vectorcall
)]
#[
no_mangle
]
extern
"stdcall"
fn
foo
(
_
:
bool
)
{}
#[
no_mangle
]
extern
"fastcall"
fn
bar
(
_
:
u8
)
{}
#[
no_mangle
]
extern
"vectorcall"
fn
baz
(
_
:
u16
)
{}