Skip to content

Commit 8ffc0e7

Browse files
authored
Unrolled build for rust-lang#132871
Rollup merge of rust-lang#132871 - lolbinarycat:rustdoc-heterogeneous-first-paragraph-85763, r=aDotInTheVoid add regression test for rust-lang#85763 closes rust-lang#85763
2 parents 42b2496 + 93ea5bb commit 8ffc0e7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/rustdoc/heterogeneous-concat.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// regression test for https://github.com/rust-lang/rust/issues/85763
2+
3+
#![crate_name = "foo"]
4+
5+
//@ has foo/index.html '//main' 'Some text that should be concatenated.'
6+
#[doc = " Some text"]
7+
#[doc = r" that should"]
8+
/// be concatenated.
9+
pub fn main() {
10+
println!("Hello, world!");
11+
}

0 commit comments

Comments
 (0)