]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-3055/empty-code-block.rs
Fix static async closure qualifier order
[rust.git] / tests / target / issue-3055 / empty-code-block.rs
1 // rustfmt-wrap_comments: true
2
3 /// Simple block
4 ///
5 /// ```
6 /// ```
7 ///
8 /// ```no_run
9 /// ```
10 ///
11 /// ```should_panic
12 /// ```
13 ///
14 /// ```compile_fail
15 /// ```
16 fn main() {
17     println!("Hello, world!");
18 }