Files
rust/tests/ui/eii/linking/codegen_single_crate.rs
T
2026-01-10 11:10:44 +01:00

24 lines
482 B
Rust

//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// FIXME: linking on windows (speciifcally mingw) not yet supported, see tracking issue #125418
//@ ignore-windows
// Tests whether calling EIIs works with the declaration in the same crate.
#![feature(extern_item_impls)]
#[eii]
fn hello(x: u64);
#[hello]
fn hello_impl(x: u64) {
println!("{x:?}")
}
// what you would write:
fn main() {
// directly
hello_impl(21);
// through the alias
hello(42);
}