blob: bee3d8e65097aa5c305ad7e39bb7036e76b697ba [file] [log] [blame]
#![feature(extern_types)]
extern "C" {
//@ has foreigntype/foreigntype.ExtType.html
pub type ExtType;
}
impl ExtType {
//@ has - '//a[@class="fn"]' 'do_something'
pub fn do_something(&self) {}
}
pub trait Trait {}
//@ has foreigntype/trait.Trait.html '//a[@class="foreigntype"]' 'ExtType'
impl Trait for ExtType {}
//@ has foreigntype/index.html '//a[@class="foreigntype"]' 'ExtType'