1#[cxx::bridge]
2mod ffi {
3    struct S {
4        x: u8,
5    }
6
7    impl fn() -> &S {}
8}
9
10fn main() {}
11