Skip to content

Commit 124b443

Browse files
committed
add test for build.rs
1 parent fe26933 commit 124b443

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

lints/par_fold/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ path = "ui/rayon_missing.rs"
3535
[[example]]
3636
name = "par_fold_simple"
3737
path = "ui/par_fold_simple.rs"
38+
39+
[[example]]
40+
name = "build"
41+
path = "ui/build.rs"

lints/par_fold/ui/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
(0..100).for_each(|x| println!("{x}"));
3+
}

lints/par_fold/ui/build.stderr

Whitespace-only changes.

0 commit comments

Comments
 (0)