We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5da451d + 93ea5bb commit d3d9afdCopy full SHA for d3d9afd
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