rust/tests/mod-resolver/skip-files-issue-5065/main.rs
Yacin Tmimi f40b1d9f1a Backport: Do not touch module with #![rustfmt::skip] (4297)
Although the implementation is slightly different than the original PR,
the general idea is the same. After collecting all modules we want to
exclude formatting those that contain the #![rustfmt::skip] attribute.
2021-12-07 18:45:00 -06:00

10 lines
98 B
Rust

#![rustfmt::skip]
mod foo;
mod one;
fn main() {println!("Hello, world!");
}
// trailing commet