about summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-03-24 16:38:16 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2018-03-24 16:38:16 +0100
commit4083bdff0b7550534d93712c85164cb287acb856 (patch)
tree97084934a766800a2cfdd47cb282a29637b73382 /src/test/rustdoc
parenta0b0f5fba5d7bf18b24d1fa0e454a4fe871fecee (diff)
downloadrust-4083bdff0b7550534d93712c85164cb287acb856.tar.gz
rust-4083bdff0b7550534d93712c85164cb287acb856.zip
Fix impl assoc constant link not working
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/link-assoc-const.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/rustdoc/link-assoc-const.rs b/src/test/rustdoc/link-assoc-const.rs
new file mode 100644
index 00000000000..aa7ef07d5c0
--- /dev/null
+++ b/src/test/rustdoc/link-assoc-const.rs
@@ -0,0 +1,26 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![crate_name = "foo"]
+
+// @has foo/index.html '//a[@href="../foo/foo/constant.FIRSTCONST.html"]' 'foo::FIRSTCONST'
+// @has foo/index.html '//a[@href="../foo/struct.Bar.html#associatedconstant.CONST"]' 'Bar::CONST'
+
+//! We have here [`foo::FIRSTCONST`] and [`Bar::CONST`].
+
+pub mod foo {
+    pub const FIRSTCONST: u32 = 42;
+}
+
+pub struct Bar;
+
+impl Bar {
+    pub const CONST: u32 = 42;
+}