We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d38dbcb commit 32cd4bcCopy full SHA for 32cd4bc
src/test/rustdoc/intra-link-extern-type.rs
@@ -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