rust/tests/rustdoc-js/foreign-type-path.rs

14 lines
162 B
Rust

#![feature(extern_types)]
pub mod aaaaaaa {
extern {
pub type MyForeignType;
}
impl MyForeignType {
pub fn my_method() {}
}
}