Skip to content

Commit b3f629e

Browse files
Add regression test for #143107
1 parent 4a2709d commit b3f629e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// This test ensures that if an item is inlined from two different `use`,
2+
// then it will use attributes from both of them.
3+
// This is a regression test for <https://github.com/rust-lang/rust/issues/143107>.
4+
5+
#![feature(no_core)]
6+
#![no_core]
7+
#![no_std]
8+
#![crate_name = "foo"]
9+
10+
//@ has 'foo/struct.Foo.html'
11+
//@ has - '//*[@class="docblock"]' 'Foobar Blob'
12+
13+
mod raw {
14+
/// Blob
15+
pub struct Foo;
16+
}
17+
18+
/// Foobar
19+
pub use raw::Foo;
20+
21+
// Glob reexport attributes are ignored.
22+
/// Baz
23+
pub use raw::*;

0 commit comments

Comments
 (0)