Skip to content

Commit 10d4a98

Browse files
committed
refresh expected ones
1 parent 652f116 commit 10d4a98

File tree

27 files changed

+93
-44
lines changed

27 files changed

+93
-44
lines changed

compiler/rustc_ast/src/token.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ impl Lit {
209209
}
210210
}
211211

212+
// tidy-keep-sync-with=tidy-ticket-ast-from_token
212213
/// Keep this in sync with `Token::can_begin_literal_maybe_minus` excluding unary negation.
213214
pub fn from_token(token: &Token) -> Option<Lit> {
214215
match token.uninterpolate().kind {
@@ -223,6 +224,7 @@ impl Lit {
223224
_ => None,
224225
}
225226
}
227+
// tidy-keep-sync-with=tidy-ticket-ast-from_token
226228
}
227229

228230
impl fmt::Display for Lit {
@@ -748,6 +750,7 @@ impl Token {
748750
///
749751
/// In other words, would this token be a valid start of `parse_literal_maybe_minus`?
750752
///
753+
// tidy-keep-sync-with=tidy-ticket-ast-can_begin_literal_maybe_minus
751754
/// Keep this in sync with and `Lit::from_token`, excluding unary negation.
752755
pub fn can_begin_literal_maybe_minus(&self) -> bool {
753756
match self.uninterpolate().kind {
@@ -774,6 +777,7 @@ impl Token {
774777
_ => false,
775778
}
776779
}
780+
// tidy-keep-sync-with=tidy-ticket-ast-can_begin_literal_maybe_minus
777781

778782
pub fn can_begin_string_literal(&self) -> bool {
779783
match self.uninterpolate().kind {

compiler/rustc_builtin_macros/src/assert/context.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ impl<'cx, 'a> Context<'cx, 'a> {
291291
}
292292
// Expressions that are not worth or can not be captured.
293293
//
294+
// tidy-keep-sync-with=tidy-ticket-all-expr-kinds
294295
// Full list instead of `_` to catch possible future inclusions and to
295296
// sync with the `rfc-2011-nicer-assert-messages/all-expr-kinds.rs` test.
296297
ExprKind::Assign(_, _, _)
@@ -323,7 +324,7 @@ impl<'cx, 'a> Context<'cx, 'a> {
323324
| ExprKind::Yeet(_)
324325
| ExprKind::Become(_)
325326
| ExprKind::Yield(_)
326-
| ExprKind::UnsafeBinderCast(..) => {}
327+
| ExprKind::UnsafeBinderCast(..) => {} // tidy-keep-sync-with=tidy-ticket-all-expr-kinds
327328
}
328329
}
329330

compiler/rustc_codegen_ssa/src/back/write.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,7 @@ impl<B: WriteBackendMethods> WorkItem<B> {
742742
}
743743
}
744744

745+
// tidy-keep-sync-with=tidy-ticket-short_description
745746
/// Generate a short description of this work item suitable for use as a thread name.
746747
fn short_description(&self) -> String {
747748
// `pthread_setname()` on *nix ignores anything beyond the first 15
@@ -789,6 +790,7 @@ impl<B: WriteBackendMethods> WorkItem<B> {
789790
WorkItem::LTO(m) => desc("lto", "LTO module", m.name()),
790791
}
791792
}
793+
// tidy-keep-sync-with=tidy-ticket-short_description
792794
}
793795

794796
/// A result produced by the backend.

compiler/rustc_const_eval/src/interpret/validity.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
707707
interp_ok(true)
708708
}
709709
ty::Float(_) | ty::Int(_) | ty::Uint(_) => {
710+
// tidy-keep-sync-with=tidy-ticket-try_visit_primitive
710711
// NOTE: Keep this in sync with the array optimization for int/float
711712
// types below!
712713
self.read_scalar(
@@ -722,6 +723,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
722723
self.add_data_range_place(value);
723724
}
724725
interp_ok(true)
726+
// tidy-keep-sync-with=tidy-ticket-try_visit_primitive
725727
}
726728
ty::RawPtr(..) => {
727729
let place = self.deref_pointer(value, ExpectedKind::RawPtr)?;
@@ -1188,9 +1190,10 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt,
11881190
}
11891191
};
11901192

1193+
// tidy-keep-sync-with=tidy-ticket-visit_value
11911194
// Optimization: we just check the entire range at once.
11921195
// NOTE: Keep this in sync with the handling of integer and float
1193-
// types above, in `visit_primitive`.
1196+
// types above, in `try_visit_primitive`.
11941197
// No need for an alignment check here, this is not an actual memory access.
11951198
let alloc = self.ecx.get_ptr_alloc(mplace.ptr(), size)?.expect("we already excluded size 0");
11961199

@@ -1230,6 +1233,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt,
12301233
// Also, mark this as containing data, not padding.
12311234
self.add_data_range(mplace.ptr(), size);
12321235
}
1236+
// tidy-keep-sync-with=tidy-ticket-visit_value
12331237
}
12341238
// Fast path for arrays and slices of ZSTs. We only need to check a single ZST element
12351239
// of an array and not all of them, because there's only a single value of a specific

compiler/rustc_data_structures/src/profiling.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ bitflags::bitflags! {
126126
}
127127
}
128128

129+
// tidy-keep-sync-with=tidy-ticket-self-profile-events
129130
// keep this in sync with the `-Z self-profile-events` help message in rustc_session/options.rs
130131
const EVENT_FILTERS_BY_NAME: &[(&str, EventFilter)] = &[
131132
("none", EventFilter::empty()),
@@ -143,6 +144,7 @@ const EVENT_FILTERS_BY_NAME: &[(&str, EventFilter)] = &[
143144
("incr-result-hashing", EventFilter::INCR_RESULT_HASHING),
144145
("artifact-sizes", EventFilter::ARTIFACT_SIZES),
145146
];
147+
// tidy-keep-sync-with=tidy-ticket-self-profile-events
146148

147149
/// Something that uniquely identifies a query invocation.
148150
pub struct QueryInvocationId(pub u32);

compiler/rustc_errors/src/json.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,8 @@ struct FutureIncompatReport<'a> {
275275
future_incompat_report: Vec<FutureBreakageItem<'a>>,
276276
}
277277

278+
// tidy-keep-sync-with=tidy-ticket-UnusedExterns
279+
// FIXME: where it located in cargo?
278280
// NOTE: Keep this in sync with the equivalent structs in rustdoc's
279281
// doctest component (as well as cargo).
280282
// We could unify this struct the one in rustdoc but they have different
@@ -286,6 +288,7 @@ struct UnusedExterns<'a> {
286288
/// List of unused externs by their names.
287289
unused_extern_names: &'a [&'a str],
288290
}
291+
// tidy-keep-sync-with=tidy-ticket-UnusedExterns
289292

290293
impl Diagnostic {
291294
/// Converts from `rustc_errors::DiagInner` to `Diagnostic`.

compiler/rustc_hir_analysis/src/check/region.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ fn resolve_block<'tcx>(visitor: &mut ScopeResolutionVisitor<'tcx>, blk: &'tcx hi
116116
visitor.cx.var_parent = visitor.cx.parent;
117117

118118
{
119+
// FIXME: sync with exactly where?
119120
// This block should be kept approximately in sync with
120121
// `intravisit::walk_block`. (We manually walk the block, rather
121122
// than call `walk_block`, in order to maintain precise

compiler/rustc_middle/src/ty/util.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,7 @@ impl<'tcx> TyCtxt<'tcx> {
693693
&& !self.is_foreign_item(def_id)
694694
}
695695

696+
// tidy-keep-sync-with=tidy-ticket-thread_local_ptr_ty
696697
/// Returns the type a reference to the thread local takes in MIR.
697698
pub fn thread_local_ptr_ty(self, def_id: DefId) -> Ty<'tcx> {
698699
let static_ty = self.type_of(def_id).instantiate_identity();
@@ -705,14 +706,17 @@ impl<'tcx> TyCtxt<'tcx> {
705706
Ty::new_imm_ref(self, self.lifetimes.re_static, static_ty)
706707
}
707708
}
709+
// tidy-keep-sync-with=tidy-ticket-thread_local_ptr_ty
708710

709711
/// Get the type of the pointer to the static that we use in MIR.
710712
pub fn static_ptr_ty(self, def_id: DefId, typing_env: ty::TypingEnv<'tcx>) -> Ty<'tcx> {
711713
// Make sure that any constants in the static's type are evaluated.
712714
let static_ty =
713715
self.normalize_erasing_regions(typing_env, self.type_of(def_id).instantiate_identity());
714716

717+
// tidy-keep-sync-with=tidy-ticket-static_ptr_ty
715718
// Make sure that accesses to unsafe statics end up using raw pointers.
719+
// FIXME: should it said sync with thread_local_ptr_ty?
716720
// For thread-locals, this needs to be kept in sync with `Rvalue::ty`.
717721
if self.is_mutable_static(def_id) {
718722
Ty::new_mut_ptr(self, static_ty)
@@ -721,6 +725,7 @@ impl<'tcx> TyCtxt<'tcx> {
721725
} else {
722726
Ty::new_imm_ref(self, self.lifetimes.re_erased, static_ty)
723727
}
728+
// tidy-keep-sync-with=tidy-ticket-static_ptr_ty
724729
}
725730

726731
/// Return the set of types that should be taken into account when checking

compiler/rustc_monomorphize/src/partitioning.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,13 +488,16 @@ fn merge_codegen_units<'tcx>(
488488
codegen_units.sort_by_key(|cgu| cmp::Reverse(cgu.size_estimate()));
489489
let num_digits = codegen_units.len().ilog10() as usize + 1;
490490
for (index, cgu) in codegen_units.iter_mut().enumerate() {
491+
// tidy-keep-sync-with=tidy-ticket-short_description
492+
// FIXME: is it sync?
491493
// Note: `WorkItem::short_description` depends on this name ending
492494
// with `-cgu.` followed by a numeric suffix. Please keep it in
493495
// sync with this code.
494496
let suffix = format!("{index:0num_digits$}");
495497
let numbered_codegen_unit_name =
496498
cgu_name_builder.build_cgu_name_no_mangle(LOCAL_CRATE, &["cgu"], Some(suffix));
497499
cgu.set_name(numbered_codegen_unit_name);
500+
// tidy-keep-sync-with=tidy-ticket-short_description
498501
}
499502
}
500503
}

compiler/rustc_next_trait_solver/src/solve/assembly/structural_traits.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ where
255255
}
256256
}
257257

258+
// tidy-keep-sync-with=tidy-ticket-extract_tupled_inputs_and_output_from_callable
258259
// Returns a binder of the tupled inputs types and output type from a builtin callable type.
259260
pub(in crate::solve) fn extract_tupled_inputs_and_output_from_callable<I: Interner>(
260261
cx: I,
@@ -393,6 +394,7 @@ pub(in crate::solve) fn extract_tupled_inputs_and_output_from_callable<I: Intern
393394
}
394395
}
395396
}
397+
// tidy-keep-sync-with=tidy-ticket-extract_tupled_inputs_and_output_from_callable
396398

397399
/// Relevant types for an async callable, including its inputs, output,
398400
/// and the return type you get from awaiting the output.

compiler/rustc_parse/src/parser/expr.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2181,6 +2181,7 @@ impl<'a> Parser<'a> {
21812181
}
21822182
}
21832183

2184+
// tidy-keep-sync-with=tidy-ticket-rustc_parse-can_begin_literal_maybe_minus
21842185
/// Matches `'-' lit | lit` (cf. `ast_validation::AstValidator::check_expr_within_pat`).
21852186
/// Keep this in sync with `Token::can_begin_literal_maybe_minus`.
21862187
pub fn parse_literal_maybe_minus(&mut self) -> PResult<'a, P<Expr>> {
@@ -2216,6 +2217,7 @@ impl<'a> Parser<'a> {
22162217
Ok(expr)
22172218
}
22182219
}
2220+
// tidy-keep-sync-with=tidy-ticket-rustc_parse-can_begin_literal_maybe_minus
22192221

22202222
fn is_array_like_block(&mut self) -> bool {
22212223
self.look_ahead(1, |t| matches!(t.kind, TokenKind::Ident(..) | TokenKind::Literal(_)))

compiler/rustc_pattern_analysis/src/constructor.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -782,11 +782,14 @@ impl<Cx: PatCx> Constructor<Cx> {
782782
}
783783
}
784784

785+
// tidy-keep-sync-with=tidy-ticket-arity
785786
/// The number of fields for this constructor. This must be kept in sync with
786787
/// `Fields::wildcards`.
788+
// FIXME: this comment long ago desynced
787789
pub(crate) fn arity(&self, cx: &Cx, ty: &Cx::Ty) -> usize {
788790
cx.ctor_arity(self, ty)
789791
}
792+
// tidy-keep-sync-with=tidy-ticket-arity
790793

791794
/// Returns whether `self` is covered by `other`, i.e. whether `self` is a subset of `other`.
792795
/// For the simple cases, this is simply checking for equality. For the "grouped" constructors,

compiler/rustc_session/src/config/cfg.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ impl CheckCfg {
334334
// The exceptions are where control flow forces things out of order.
335335
//
336336
// NOTE: This should be kept in sync with `default_configuration`.
337+
// FIXME: what exactly sync there?
337338
// Note that symbols inserted conditionally in `default_configuration`
338339
// are inserted unconditionally here.
339340
//

compiler/rustc_session/src/config/sigpipe.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// tidy-keep-sync-with=tidy-ticket-sigpipe
12
//! NOTE: Keep these constants in sync with `library/std/src/sys/pal/unix/mod.rs`!
23
34
/// The default value if `-Zon-broken-pipe=...` is not specified. This resolves
@@ -23,3 +24,4 @@ pub const SIG_IGN: u8 = 2;
2324
/// such as `head -n 1`.
2425
#[allow(dead_code)]
2526
pub const SIG_DFL: u8 = 3;
27+
// tidy-keep-sync-with=tidy-ticket-sigpipe

compiler/rustc_session/src/options.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2095,12 +2095,14 @@ written to standard error output)"),
20952095
`instructions:u` (retired instructions, userspace-only)
20962096
`instructions-minus-irqs:u` (subtracting hardware interrupt counts for extra accuracy)"
20972097
),
2098-
/// keep this in sync with the event filter names in librustc_data_structures/profiling.rs
2098+
// tidy-keep-sync-with=tidy-ticket-self-profile-events
2099+
/// keep this in sync with the event filter names in rustc_data_structures/src/profiling.rs
20992100
self_profile_events: Option<Vec<String>> = (None, parse_opt_comma_list, [UNTRACKED],
21002101
"specify the events recorded by the self profiler;
21012102
for example: `-Z self-profile-events=default,query-keys`
2102-
all options: none, all, default, generic-activity, query-provider, query-cache-hit
2103-
query-blocked, incr-cache-load, incr-result-hashing, query-keys, function-args, args, llvm, artifact-sizes"),
2103+
all options: none, all, default, generic-activity, query-provider, query-cache-hit,
2104+
query-blocked, incr-cache-load, query-keys, function-args, args, llvm, incr-result-hashing, artifact-sizes"),
2105+
// tidy-keep-sync-with=tidy-ticket-self-profile-events
21042106
share_generics: Option<bool> = (None, parse_opt_bool, [TRACKED],
21052107
"make the current crate share its generic instantiations"),
21062108
shell_argfiles: bool = (false, parse_bool, [UNTRACKED],

compiler/rustc_trait_selection/src/traits/project.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -927,6 +927,7 @@ fn assemble_candidates_from_impls<'cx, 'tcx>(
927927
};
928928

929929
let eligible = match &impl_source {
930+
// tidy-keep-sync-with=tidy-ticket-assemble_candidates_from_impls-UserDefined
930931
ImplSource::UserDefined(impl_data) => {
931932
// We have to be careful when projecting out of an
932933
// impl because of specialization. If we are not in
@@ -991,6 +992,7 @@ fn assemble_candidates_from_impls<'cx, 'tcx>(
991992
Err(ErrorGuaranteed { .. }) => true,
992993
}
993994
}
995+
// tidy-keep-sync-with=tidy-ticket-assemble_candidates_from_impls-UserDefined
994996
ImplSource::Builtin(BuiltinImplSource::Misc, _) => {
995997
// While a builtin impl may be known to exist, the associated type may not yet
996998
// be known. Any type with multiple potential associated types is therefore

compiler/rustc_trait_selection/src/traits/select/candidate_assembly.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
502502
}
503503
}
504504

505+
// tidy-keep-sync-with=tidy-ticket-assemble_fn_pointer_candidates
505506
/// Implements one of the `Fn()` family for a fn pointer.
506507
fn assemble_fn_pointer_candidates(
507508
&mut self,
@@ -541,6 +542,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
541542
_ => {}
542543
}
543544
}
545+
// tidy-keep-sync-with=tidy-ticket-assemble_fn_pointer_candidates
544546

545547
/// Searches for impls that might apply to `obligation`.
546548
#[instrument(level = "debug", skip(self, candidates))]

compiler/rustc_ty_utils/src/instance.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ fn resolve_associated_item<'tcx>(
117117
// Now that we know which impl is being used, we can dispatch to
118118
// the actual function:
119119
Ok(match vtbl {
120+
// tidy-keep-sync-with=tidy-ticket-resolve_associated_item-UserDefined
120121
traits::ImplSource::UserDefined(impl_data) => {
121122
debug!(
122123
"resolving ImplSource::UserDefined: {:?}, {:?}, {:?}, {:?}",
@@ -230,6 +231,7 @@ fn resolve_associated_item<'tcx>(
230231

231232
Some(ty::Instance::new(leaf_def.item.def_id, args))
232233
}
234+
// tidy-keep-sync-with=tidy-ticket-resolve_associated_item-UserDefined
233235
traits::ImplSource::Builtin(BuiltinImplSource::Object(_), _) => {
234236
let trait_ref = ty::TraitRef::from_method(tcx, trait_id, rcvr_args);
235237
if trait_ref.has_non_region_infer() || trait_ref.has_non_region_param() {

library/alloc/src/boxed.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ pub use thin::ThinBox;
226226
#[stable(feature = "rust1", since = "1.0.0")]
227227
#[rustc_insignificant_dtor]
228228
#[doc(search_unbox)]
229+
// FIXME: Sync with what?
229230
// The declaration of the `Box` struct must be kept in sync with the
230231
// compiler or ICEs will happen.
231232
pub struct Box<

library/core/src/ptr/metadata.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ use crate::ptr::NonNull;
5858
pub trait Pointee {
5959
/// The type for metadata in pointers and references to `Self`.
6060
#[lang = "metadata_type"]
61+
// tidy-keep-sync-with=tidy-ticket-static_assert_expected_bounds_for_metadata
6162
// NOTE: Keep trait bounds in `static_assert_expected_bounds_for_metadata`
62-
// in `library/core/src/ptr/metadata.rs`
63+
// in `library/core/tests/ptr.rs`
6364
// in sync with those here:
6465
type Metadata: fmt::Debug + Copy + Send + Sync + Ord + Hash + Unpin + Freeze;
66+
// tidy-keep-sync-with=tidy-ticket-static_assert_expected_bounds_for_metadata
6567
}
6668

6769
/// Pointers to types implementing this trait alias are “thin”.

library/core/tests/ptr.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,12 +586,15 @@ fn ptr_metadata_bounds() {
586586
let _ = static_assert_expected_bounds_for_metadata::<<T as Pointee>::Metadata>;
587587
}
588588

589+
// tidy-keep-sync-with=tidy-ticket-static_assert_expected_bounds_for_metadata
590+
// FIXME: should be core::hash::hash?
589591
fn static_assert_expected_bounds_for_metadata<Meta>()
590592
where
591593
// Keep this in sync with the associated type in `library/core/src/ptr/metadata.rs`
592594
Meta: Debug + Copy + Send + Sync + Ord + std::hash::Hash + Unpin + Freeze,
593595
{
594596
}
597+
// tidy-keep-sync-with=tidy-ticket-static_assert_expected_bounds_for_metadata
595598
}
596599

597600
#[test]

library/std/src/sys/pal/unix/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
170170
target_vendor = "unikraft",
171171
)))]
172172
{
173+
// tidy-keep-sync-with=tidy-ticket-sigpipe
173174
// We don't want to add this as a public type to std, nor do we
174175
// want to `include!` a file from the compiler (which would break
175176
// Miri and xargo for example), so we choose to duplicate these
@@ -182,6 +183,7 @@ pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
182183
pub const SIG_IGN: u8 = 2;
183184
pub const SIG_DFL: u8 = 3;
184185
}
186+
// tidy-keep-sync-with=tidy-ticket-sigpipe
185187

186188
let (sigpipe_attr_specified, handler) = match sigpipe {
187189
sigpipe::DEFAULT => (false, Some(libc::SIG_IGN)),

src/librustdoc/core.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,12 @@ pub(crate) fn run_global_ctxt(
335335
// typeck function bodies or run the default rustc lints.
336336
// (see `override_queries` in the `config`)
337337

338+
// tidy-keep-sync-with=tidy-ticket-sess-time-item_types_checking
338339
// NOTE: These are copy/pasted from typeck/lib.rs and should be kept in sync with those changes.
339340
let _ = tcx.sess.time("wf_checking", || {
340341
tcx.hir().try_par_for_each_module(|module| tcx.ensure().check_mod_type_wf(module))
341342
});
343+
// tidy-keep-sync-with=tidy-ticket-sess-time-item_types_checking
342344

343345
tcx.dcx().abort_if_errors();
344346

0 commit comments

Comments
 (0)