blob: b53567751b4cef49a9f06d86c7c30e7576d79503 [file] [log] [blame]
#[cxx::bridge]
mod ffi {
extern "Rust" {
fn f() -> Result<()>;
}
}
pub struct NonError;
fn f() -> Result<(), NonError> {
Ok(())
}
fn main() {}