]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/doc-comment-preserved.rs
Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup
[rust.git] / src / test / ui / proc-macro / doc-comment-preserved.rs
1 // check-pass
2 // compile-flags: -Z span-debug
3 // aux-build:test-macros.rs
4
5 #![no_std] // Don't load unnecessary hygiene information from std
6 extern crate std;
7
8 #[macro_use]
9 extern crate test_macros;
10
11 print_bang! {
12
13 /**
14 *******
15 * DOC *
16 * DOC *
17 * DOC *
18 *******
19 */
20 pub struct S;
21
22 }
23
24 fn main() {}