Skip to content

Commit 32cd4bc

Browse files
committed
Add test
1 parent d38dbcb commit 32cd4bc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#![feature(extern_types)]
2+
3+
extern {
4+
pub type ExternType;
5+
}
6+
7+
impl ExternType {
8+
pub fn f(&self) {
9+
10+
}
11+
}
12+
13+
// @has 'intra_link_extern_type/foreigntype.ExternType.html'
14+
// @has 'intra_link_extern_type/fn.links_to_extern_type.html' \
15+
// 'href="../intra_link_extern_type/foreigntype.ExternType.html#method.f"'
16+
/// See also [ExternType::f]
17+
pub fn links_to_extern_type() {
18+
}

0 commit comments

Comments
 (0)