This commit is contained in:
Hannah McLaughlin 2020-11-18 22:14:58 +00:00
parent d38dbcb19f
commit 32cd4bc790

View File

@ -0,0 +1,18 @@
#![feature(extern_types)]
extern {
pub type ExternType;
}
impl ExternType {
pub fn f(&self) {
}
}
// @has 'intra_link_extern_type/foreigntype.ExternType.html'
// @has 'intra_link_extern_type/fn.links_to_extern_type.html' \
// 'href="../intra_link_extern_type/foreigntype.ExternType.html#method.f"'
/// See also [ExternType::f]
pub fn links_to_extern_type() {
}