9 lines
185 B
Rust
9 lines
185 B
Rust
|
//@compile-flags: -C incremental=target/debug/test/incr
|
||
|
|
||
|
// see https://github.com/rust-lang/rust-clippy/issues/10969
|
||
|
|
||
|
fn main() {
|
||
|
let s = "Hello, world!";
|
||
|
println!("{}", s);
|
||
|
}
|