about summary refs log tree commit diff
path: root/src/test/auxiliary
diff options
context:
space:
mode:
authormitaa <mitaa.ceb@gmail.com>2016-02-26 01:45:24 +0100
committermitaa <mitaa.ceb@gmail.com>2016-02-26 15:56:46 +0100
commiteae9f4636cda0b1f9b2c23afbb03deccdb0b8ad1 (patch)
tree897e13d654dded20799d3c691126eed26bdd940d /src/test/auxiliary
parentc9852e2e550306a738653a5d4d16cab43454776f (diff)
downloadrust-eae9f4636cda0b1f9b2c23afbb03deccdb0b8ad1.tar.gz
rust-eae9f4636cda0b1f9b2c23afbb03deccdb0b8ad1.zip
Don't inline impls from `doc(hidden)` modules
Diffstat (limited to 'src/test/auxiliary')
-rw-r--r--src/test/auxiliary/issue-29584.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/auxiliary/issue-29584.rs b/src/test/auxiliary/issue-29584.rs
new file mode 100644
index 00000000000..4a9e6126fc6
--- /dev/null
+++ b/src/test/auxiliary/issue-29584.rs
@@ -0,0 +1,18 @@
+// Copyright 2016 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.
+
+pub struct Foo;
+
+#[doc(hidden)]
+mod bar {
+    trait Bar {}
+
+    impl Bar for ::Foo {}
+}