unplugged-vendor/external/rust/cxx/tests/ui/nonempty_impl_block.rs

13 lines
134 B
Rust
Raw Normal View History

#[cxx::bridge]
mod ffi {
struct S {
x: u8,
}
impl UniquePtr<S> {
fn new() -> Self;
}
}
fn main() {}