You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test creates a file in the current working directory, which doesn't work in rust-lang/rust CI. It should be changed to create the incremental directory somewhere else, I'm not sure what the best solution would be here.
//@run-rustfix//@compile-flags: -C incremental=target/debug/test/incr// see https://github.com/rust-lang/rust-clippy/issues/10969fnmain(){let s = "Hello, world!";println!("{}", s.to_string());}