Skip to content

Commit c2d2732

Browse files
committed
Add .stderr file for test that appears to trigger a lint that cannot be silenced.
1 parent 94275a4 commit c2d2732

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
warning: unnecessary path disambiguator
2+
--> $DIR/packed-struct-generic-size.rs:48:14
3+
|
4+
LL | check!(P1::<u8, u8>, 1, 3);
5+
| ^^ try removing `::`
6+
7+
warning: unnecessary path disambiguator
8+
--> $DIR/packed-struct-generic-size.rs:49:14
9+
|
10+
LL | check!(P1::<u64, u16>, 1, 11);
11+
| ^^ try removing `::`
12+
13+
warning: unnecessary path disambiguator
14+
--> $DIR/packed-struct-generic-size.rs:51:14
15+
|
16+
LL | check!(P2::<u8, u8>, 1, 3);
17+
| ^^ try removing `::`
18+
19+
warning: unnecessary path disambiguator
20+
--> $DIR/packed-struct-generic-size.rs:52:14
21+
|
22+
LL | check!(P2::<u64, u16>, 2, 12);
23+
| ^^ try removing `::`
24+
25+
warning: unnecessary path disambiguator
26+
--> $DIR/packed-struct-generic-size.rs:54:15
27+
|
28+
LL | check!(P4C::<u8, u8>, 1, 3);
29+
| ^^ try removing `::`
30+
31+
warning: unnecessary path disambiguator
32+
--> $DIR/packed-struct-generic-size.rs:55:15
33+
|
34+
LL | check!(P4C::<u16, u64>, 4, 12);
35+
| ^^ try removing `::`
36+

0 commit comments

Comments
 (0)