mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
11 lines
233 B
Rust
11 lines
233 B
Rust
|
//@ build-pass
|
||
|
//@ compile-flags: -o - -Zunpretty=hir-tree
|
||
|
//@ check-stdout
|
||
|
//@ dont-check-compiler-stdout
|
||
|
//@ dont-check-compiler-stderr
|
||
|
//@ regex-error-pattern: Hello, Rustaceans!
|
||
|
|
||
|
fn main() {
|
||
|
println!("Hello, Rustaceans!");
|
||
|
}
|