]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-25944.rs
Rollup merge of #106407 - mejrs:attr_check, r=compiler-errors
[rust.git] / tests / rustdoc / issue-25944.rs
1 // compile-flags:--test
2
3 /// ```
4 /// let a = r#"
5 /// foo
6 /// bar"#;
7 /// let b = "\nfoo\nbar";
8 /// assert_eq!(a, b);
9 /// ```
10 pub fn main() {
11 }