]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/doc-comment-preserved.rs
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / 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() {}