mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-02 18:12:51 +00:00
19 lines
204 B
Rust
19 lines
204 B
Rust
// rustfmt-wrap_comments: true
|
|
|
|
/// Simple block
|
|
///
|
|
/// ```
|
|
/// ```
|
|
///
|
|
/// ```no_run
|
|
/// ```
|
|
///
|
|
/// ```should_panic
|
|
/// ```
|
|
///
|
|
/// ```compile_fail
|
|
/// ```
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
}
|