11 lines
106 B
Rust
11 lines
106 B
Rust
|
|
#[cxx::bridge]
|
||
|
|
mod ffi {
|
||
|
|
extern "Rust" {
|
||
|
|
const fn f();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const fn f() {}
|
||
|
|
|
||
|
|
fn main() {}
|