add regression test for #85763

This commit is contained in:
binarycat 2024-11-10 13:38:41 -06:00
parent 7028d9318f
commit 93ea5bb709

View File

@ -0,0 +1,11 @@
// regression test for https://github.com/rust-lang/rust/issues/85763
#![crate_name = "foo"]
//@ has foo/index.html '//main' 'Some text that should be concatenated.'
#[doc = " Some text"]
#[doc = r" that should"]
/// be concatenated.
pub fn main() {
println!("Hello, world!");
}