Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
export_name.rs
blob: 701b5143f6ca1d1d939278cf33db693f5017014f [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
#[
export_name
=
"other_name"
]
fn
func
()
{}
// { dg-final { scan-assembler "other_name" } }
fn
main
()
{
func
();
}