mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
12 lines
285 B
Rust
12 lines
285 B
Rust
// 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!");
|
|
}
|