File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ jobs:
238
238
override : true
239
239
240
240
- name : Check cfg
241
- run : cargo check -Z unstable-options -Z check-cfg=features
241
+ run : cargo check -Z unstable-options -Z check-cfg
242
242
243
243
test-book :
244
244
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -98,13 +98,13 @@ pub(crate) trait ItemAncestors {
98
98
fn ancestors < ' a > ( & self , ctx : & ' a BindgenContext ) -> ItemAncestorsIter < ' a > ;
99
99
}
100
100
101
- #[ cfg( __testing_only_extra_assertions) ]
101
+ #[ cfg( feature = " __testing_only_extra_assertions" ) ]
102
102
type DebugOnlyItemSet = ItemSet ;
103
103
104
- #[ cfg( not( __testing_only_extra_assertions) ) ]
104
+ #[ cfg( not( feature = " __testing_only_extra_assertions" ) ) ]
105
105
struct DebugOnlyItemSet ;
106
106
107
- #[ cfg( not( __testing_only_extra_assertions) ) ]
107
+ #[ cfg( not( feature = " __testing_only_extra_assertions" ) ) ]
108
108
impl DebugOnlyItemSet {
109
109
fn new ( ) -> Self {
110
110
DebugOnlyItemSet
You can’t perform that action at this time.
0 commit comments