mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 04:46:58 +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!");
|
|
}
|