about summary refs log tree commit diff
path: root/tests/run-make/arm64ec-import-export-static/import.rs
blob: 9d52db251250a54dad28c7028f042655853615ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![crate_type = "cdylib"]
#![allow(internal_features)]
#![feature(no_core)]
#![no_std]
#![no_core]

extern crate export;

#[no_mangle]
pub extern "C" fn func() -> i32 {
    export::VALUE
}