@@ -139,6 +139,10 @@ mod ok {
139
139
run_and_expect_no_errors ( "test_data/parser/inline/ok/const_trait_bound.rs" ) ;
140
140
}
141
141
#[ test]
142
+ fn const_where_clause ( ) {
143
+ run_and_expect_no_errors ( "test_data/parser/inline/ok/const_where_clause.rs" ) ;
144
+ }
145
+ #[ test]
142
146
fn continue_expr ( ) { run_and_expect_no_errors ( "test_data/parser/inline/ok/continue_expr.rs" ) ; }
143
147
#[ test]
144
148
fn crate_path ( ) { run_and_expect_no_errors ( "test_data/parser/inline/ok/crate_path.rs" ) ; }
@@ -278,6 +282,8 @@ mod ok {
278
282
run_and_expect_no_errors ( "test_data/parser/inline/ok/generic_arg_bounds.rs" ) ;
279
283
}
280
284
#[ test]
285
+ fn generic_const ( ) { run_and_expect_no_errors ( "test_data/parser/inline/ok/generic_const.rs" ) ; }
286
+ #[ test]
281
287
fn generic_param_attribute ( ) {
282
288
run_and_expect_no_errors ( "test_data/parser/inline/ok/generic_param_attribute.rs" ) ;
283
289
}
@@ -764,6 +770,8 @@ mod err {
764
770
run_and_expect_errors ( "test_data/parser/inline/err/generic_param_list_recover.rs" ) ;
765
771
}
766
772
#[ test]
773
+ fn generic_static ( ) { run_and_expect_errors ( "test_data/parser/inline/err/generic_static.rs" ) ; }
774
+ #[ test]
767
775
fn impl_type ( ) { run_and_expect_errors ( "test_data/parser/inline/err/impl_type.rs" ) ; }
768
776
#[ test]
769
777
fn let_else_right_curly_brace ( ) {
@@ -836,6 +844,10 @@ mod err {
836
844
run_and_expect_errors ( "test_data/parser/inline/err/recover_from_missing_const_default.rs" ) ;
837
845
}
838
846
#[ test]
847
+ fn static_where_clause ( ) {
848
+ run_and_expect_errors ( "test_data/parser/inline/err/static_where_clause.rs" ) ;
849
+ }
850
+ #[ test]
839
851
fn struct_field_recover ( ) {
840
852
run_and_expect_errors ( "test_data/parser/inline/err/struct_field_recover.rs" ) ;
841
853
}
0 commit comments