rust/tests/ui/linking/weird-export-names.rs
Vadim Petrochenkov 842858f765 linker: Quote symbol names in .def files
To support weird symbol names, including dots in particular.
2025-05-02 16:25:00 +03:00

11 lines
182 B
Rust

//@ build-pass
//@ needs-crate-type: cdylib
#![crate_type = "cdylib"]
#[export_name = "foo.0123"]
pub extern "C" fn foo() {}
#[export_name = "EXPORTS"]
pub extern "C" fn bar() {}