We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42b2496 + 93ea5bb commit 8ffc0e7Copy full SHA for 8ffc0e7
tests/rustdoc/heterogeneous-concat.rs
@@ -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