summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js/foreign-type-path.rs
blob: 83400104ea77ea489f522d3e60470ecbd0a25bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(extern_types)]

pub mod aaaaaaa {

    extern {
        pub type MyForeignType;
    }

    impl MyForeignType {
        pub fn my_method() {}
    }

}