1 2 3 4 5 6 7 8 9 10 11 12
#![feature(extern_types)] pub mod aaaaaaa { extern "C" { pub type MyForeignType; } impl MyForeignType { pub fn my_method() {} } }