1
1
use rustc_errors:: {
2
- struct_span_err, DiagnosticBuilder , DiagnosticId , DiagnosticMessage , ErrorGuaranteed , MultiSpan ,
2
+ struct_span_err, DiagnosticBuilder , DiagnosticId , DiagnosticMessage , MultiSpan ,
3
3
} ;
4
4
use rustc_middle:: ty:: { self , Ty , TyCtxt } ;
5
5
use rustc_span:: Span ;
@@ -12,7 +12,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
12
12
place : & str ,
13
13
borrow_place : & str ,
14
14
value_place : & str ,
15
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
15
+ ) -> DiagnosticBuilder < ' tcx > {
16
16
self . infcx . tcx . sess . create_err ( crate :: session_diagnostics:: MoveBorrow {
17
17
place,
18
18
span,
@@ -28,7 +28,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
28
28
desc : & str ,
29
29
borrow_span : Span ,
30
30
borrow_desc : & str ,
31
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
31
+ ) -> DiagnosticBuilder < ' tcx > {
32
32
let mut err = struct_span_err ! (
33
33
self ,
34
34
span,
@@ -50,7 +50,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
50
50
old_loan_span : Span ,
51
51
old_opt_via : & str ,
52
52
old_load_end_span : Option < Span > ,
53
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
53
+ ) -> DiagnosticBuilder < ' tcx > {
54
54
let via = |msg : & str | if msg. is_empty ( ) { "" . to_string ( ) } else { format ! ( " (via {msg})" ) } ;
55
55
let mut err = struct_span_err ! (
56
56
self ,
@@ -97,7 +97,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
97
97
desc : & str ,
98
98
old_loan_span : Span ,
99
99
old_load_end_span : Option < Span > ,
100
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
100
+ ) -> DiagnosticBuilder < ' tcx > {
101
101
let mut err = struct_span_err ! (
102
102
self ,
103
103
new_loan_span,
@@ -130,7 +130,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
130
130
noun_old : & str ,
131
131
old_opt_via : & str ,
132
132
previous_end_span : Option < Span > ,
133
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
133
+ ) -> DiagnosticBuilder < ' cx > {
134
134
let mut err = struct_span_err ! (
135
135
self ,
136
136
new_loan_span,
@@ -162,7 +162,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
162
162
old_opt_via : & str ,
163
163
previous_end_span : Option < Span > ,
164
164
second_borrow_desc : & str ,
165
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
165
+ ) -> DiagnosticBuilder < ' cx > {
166
166
let mut err = struct_span_err ! (
167
167
self ,
168
168
new_loan_span,
@@ -194,7 +194,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
194
194
kind_old : & str ,
195
195
msg_old : & str ,
196
196
old_load_end_span : Option < Span > ,
197
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
197
+ ) -> DiagnosticBuilder < ' cx > {
198
198
let via = |msg : & str | if msg. is_empty ( ) { "" . to_string ( ) } else { format ! ( " (via {msg})" ) } ;
199
199
let mut err = struct_span_err ! (
200
200
self ,
@@ -235,7 +235,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
235
235
span : Span ,
236
236
borrow_span : Span ,
237
237
desc : & str ,
238
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
238
+ ) -> DiagnosticBuilder < ' cx > {
239
239
let mut err = struct_span_err ! (
240
240
self ,
241
241
span,
@@ -254,24 +254,20 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
254
254
span : Span ,
255
255
desc : & str ,
256
256
is_arg : bool ,
257
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
257
+ ) -> DiagnosticBuilder < ' cx > {
258
258
let msg = if is_arg { "to immutable argument" } else { "twice to immutable variable" } ;
259
259
struct_span_err ! ( self , span, E0384 , "cannot assign {} {}" , msg, desc)
260
260
}
261
261
262
- pub ( crate ) fn cannot_assign (
263
- & self ,
264
- span : Span ,
265
- desc : & str ,
266
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
262
+ pub ( crate ) fn cannot_assign ( & self , span : Span , desc : & str ) -> DiagnosticBuilder < ' tcx > {
267
263
struct_span_err ! ( self , span, E0594 , "cannot assign to {}" , desc)
268
264
}
269
265
270
266
pub ( crate ) fn cannot_move_out_of (
271
267
& self ,
272
268
move_from_span : Span ,
273
269
move_from_desc : & str ,
274
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
270
+ ) -> DiagnosticBuilder < ' cx > {
275
271
struct_span_err ! ( self , move_from_span, E0507 , "cannot move out of {}" , move_from_desc)
276
272
}
277
273
@@ -283,7 +279,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
283
279
move_from_span : Span ,
284
280
ty : Ty < ' _ > ,
285
281
is_index : Option < bool > ,
286
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
282
+ ) -> DiagnosticBuilder < ' cx > {
287
283
let type_name = match ( & ty. kind ( ) , is_index) {
288
284
( & ty:: Array ( _, _) , Some ( true ) ) | ( & ty:: Array ( _, _) , None ) => "array" ,
289
285
( & ty:: Slice ( _) , _) => "slice" ,
@@ -305,7 +301,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
305
301
& self ,
306
302
move_from_span : Span ,
307
303
container_ty : Ty < ' _ > ,
308
- ) -> DiagnosticBuilder < ' cx , ErrorGuaranteed > {
304
+ ) -> DiagnosticBuilder < ' cx > {
309
305
let mut err = struct_span_err ! (
310
306
self ,
311
307
move_from_span,
@@ -323,7 +319,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
323
319
verb : & str ,
324
320
optional_adverb_for_moved : & str ,
325
321
moved_path : Option < String > ,
326
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
322
+ ) -> DiagnosticBuilder < ' tcx > {
327
323
let moved_path = moved_path. map ( |mp| format ! ( ": `{mp}`" ) ) . unwrap_or_default ( ) ;
328
324
329
325
struct_span_err ! (
@@ -342,7 +338,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
342
338
span : Span ,
343
339
path : & str ,
344
340
reason : & str ,
345
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
341
+ ) -> DiagnosticBuilder < ' tcx > {
346
342
struct_span_err ! ( self , span, E0596 , "cannot borrow {} as mutable{}" , path, reason, )
347
343
}
348
344
@@ -353,7 +349,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
353
349
immutable_place : & str ,
354
350
immutable_section : & str ,
355
351
action : & str ,
356
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
352
+ ) -> DiagnosticBuilder < ' tcx > {
357
353
let mut err = struct_span_err ! (
358
354
self ,
359
355
mutate_span,
@@ -372,7 +368,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
372
368
& self ,
373
369
span : Span ,
374
370
yield_span : Span ,
375
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
371
+ ) -> DiagnosticBuilder < ' tcx > {
376
372
let coroutine_kind = self . body . coroutine . as_ref ( ) . unwrap ( ) . coroutine_kind ;
377
373
let mut err = struct_span_err ! (
378
374
self ,
@@ -387,7 +383,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
387
383
pub ( crate ) fn cannot_borrow_across_destructor (
388
384
& self ,
389
385
borrow_span : Span ,
390
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
386
+ ) -> DiagnosticBuilder < ' tcx > {
391
387
struct_span_err ! (
392
388
self ,
393
389
borrow_span,
@@ -400,7 +396,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
400
396
& self ,
401
397
span : Span ,
402
398
path : & str ,
403
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
399
+ ) -> DiagnosticBuilder < ' tcx > {
404
400
struct_span_err ! ( self , span, E0597 , "{} does not live long enough" , path, )
405
401
}
406
402
@@ -410,7 +406,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
410
406
return_kind : & str ,
411
407
reference_desc : & str ,
412
408
path_desc : & str ,
413
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
409
+ ) -> DiagnosticBuilder < ' tcx > {
414
410
let mut err = struct_span_err ! (
415
411
self ,
416
412
span,
@@ -436,7 +432,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
436
432
borrowed_path : & str ,
437
433
capture_span : Span ,
438
434
scope : & str ,
439
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
435
+ ) -> DiagnosticBuilder < ' tcx > {
440
436
let mut err = struct_span_err ! (
441
437
self ,
442
438
closure_span,
@@ -452,14 +448,14 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
452
448
pub ( crate ) fn thread_local_value_does_not_live_long_enough (
453
449
& self ,
454
450
span : Span ,
455
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
451
+ ) -> DiagnosticBuilder < ' tcx > {
456
452
struct_span_err ! ( self , span, E0712 , "thread-local variable borrowed past end of function" , )
457
453
}
458
454
459
455
pub ( crate ) fn temporary_value_borrowed_for_too_long (
460
456
& self ,
461
457
span : Span ,
462
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
458
+ ) -> DiagnosticBuilder < ' tcx > {
463
459
struct_span_err ! ( self , span, E0716 , "temporary value dropped while borrowed" , )
464
460
}
465
461
@@ -470,7 +466,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
470
466
sp : S ,
471
467
msg : impl Into < DiagnosticMessage > ,
472
468
code : DiagnosticId ,
473
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
469
+ ) -> DiagnosticBuilder < ' tcx > {
474
470
self . infcx . tcx . sess . struct_span_err_with_code ( sp, msg, code)
475
471
}
476
472
}
@@ -479,7 +475,7 @@ pub(crate) fn borrowed_data_escapes_closure<'tcx>(
479
475
tcx : TyCtxt < ' tcx > ,
480
476
escape_span : Span ,
481
477
escapes_from : & str ,
482
- ) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
478
+ ) -> DiagnosticBuilder < ' tcx > {
483
479
struct_span_err ! (
484
480
tcx. sess,
485
481
escape_span,
0 commit comments