1
- use rustc_errors:: { struct_span_err, DiagnosticBuilder , DiagnosticId } ;
1
+ use rustc_errors:: { struct_span_err, DiagnosticBuilder , DiagnosticId , ErrorReported } ;
2
2
use rustc_middle:: ty:: { self , Ty , TyCtxt } ;
3
3
use rustc_span:: { MultiSpan , Span } ;
4
4
5
5
impl < ' cx , ' tcx > crate :: MirBorrowckCtxt < ' cx , ' tcx > {
6
- crate fn cannot_move_when_borrowed ( & self , span : Span , desc : & str ) -> DiagnosticBuilder < ' cx > {
6
+ crate fn cannot_move_when_borrowed (
7
+ & self ,
8
+ span : Span ,
9
+ desc : & str ,
10
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
7
11
struct_span_err ! ( self , span, E0505 , "cannot move out of {} because it is borrowed" , desc, )
8
12
}
9
13
@@ -13,7 +17,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
13
17
desc : & str ,
14
18
borrow_span : Span ,
15
19
borrow_desc : & str ,
16
- ) -> DiagnosticBuilder < ' cx > {
20
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
17
21
let mut err = struct_span_err ! (
18
22
self ,
19
23
span,
@@ -32,7 +36,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
32
36
span : Span ,
33
37
verb : & str ,
34
38
desc : & str ,
35
- ) -> DiagnosticBuilder < ' cx > {
39
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
36
40
struct_span_err ! (
37
41
self ,
38
42
span,
@@ -51,7 +55,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
51
55
old_loan_span : Span ,
52
56
old_opt_via : & str ,
53
57
old_load_end_span : Option < Span > ,
54
- ) -> DiagnosticBuilder < ' cx > {
58
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
55
59
let via =
56
60
|msg : & str | if msg. is_empty ( ) { "" . to_string ( ) } else { format ! ( " (via {})" , msg) } ;
57
61
let mut err = struct_span_err ! (
@@ -99,7 +103,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
99
103
desc : & str ,
100
104
old_loan_span : Span ,
101
105
old_load_end_span : Option < Span > ,
102
- ) -> DiagnosticBuilder < ' cx > {
106
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
103
107
let mut err = struct_span_err ! (
104
108
self ,
105
109
new_loan_span,
@@ -132,7 +136,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
132
136
noun_old : & str ,
133
137
old_opt_via : & str ,
134
138
previous_end_span : Option < Span > ,
135
- ) -> DiagnosticBuilder < ' cx > {
139
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
136
140
let mut err = struct_span_err ! (
137
141
self ,
138
142
new_loan_span,
@@ -164,7 +168,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
164
168
old_opt_via : & str ,
165
169
previous_end_span : Option < Span > ,
166
170
second_borrow_desc : & str ,
167
- ) -> DiagnosticBuilder < ' cx > {
171
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
168
172
let mut err = struct_span_err ! (
169
173
self ,
170
174
new_loan_span,
@@ -200,7 +204,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
200
204
kind_old : & str ,
201
205
msg_old : & str ,
202
206
old_load_end_span : Option < Span > ,
203
- ) -> DiagnosticBuilder < ' cx > {
207
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
204
208
let via =
205
209
|msg : & str | if msg. is_empty ( ) { "" . to_string ( ) } else { format ! ( " (via {})" , msg) } ;
206
210
let mut err = struct_span_err ! (
@@ -243,7 +247,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
243
247
span : Span ,
244
248
borrow_span : Span ,
245
249
desc : & str ,
246
- ) -> DiagnosticBuilder < ' cx > {
250
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
247
251
let mut err = struct_span_err ! (
248
252
self ,
249
253
span,
@@ -262,20 +266,20 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
262
266
span : Span ,
263
267
desc : & str ,
264
268
is_arg : bool ,
265
- ) -> DiagnosticBuilder < ' cx > {
269
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
266
270
let msg = if is_arg { "to immutable argument" } else { "twice to immutable variable" } ;
267
271
struct_span_err ! ( self , span, E0384 , "cannot assign {} {}" , msg, desc)
268
272
}
269
273
270
- crate fn cannot_assign ( & self , span : Span , desc : & str ) -> DiagnosticBuilder < ' cx > {
274
+ crate fn cannot_assign ( & self , span : Span , desc : & str ) -> DiagnosticBuilder < ' cx , ErrorReported > {
271
275
struct_span_err ! ( self , span, E0594 , "cannot assign to {}" , desc)
272
276
}
273
277
274
278
crate fn cannot_move_out_of (
275
279
& self ,
276
280
move_from_span : Span ,
277
281
move_from_desc : & str ,
278
- ) -> DiagnosticBuilder < ' cx > {
282
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
279
283
struct_span_err ! ( self , move_from_span, E0507 , "cannot move out of {}" , move_from_desc, )
280
284
}
281
285
@@ -287,7 +291,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
287
291
move_from_span : Span ,
288
292
ty : Ty < ' _ > ,
289
293
is_index : Option < bool > ,
290
- ) -> DiagnosticBuilder < ' cx > {
294
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
291
295
let type_name = match ( & ty. kind ( ) , is_index) {
292
296
( & ty:: Array ( _, _) , Some ( true ) ) | ( & ty:: Array ( _, _) , None ) => "array" ,
293
297
( & ty:: Slice ( _) , _) => "slice" ,
@@ -309,7 +313,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
309
313
& self ,
310
314
move_from_span : Span ,
311
315
container_ty : Ty < ' _ > ,
312
- ) -> DiagnosticBuilder < ' cx > {
316
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
313
317
let mut err = struct_span_err ! (
314
318
self ,
315
319
move_from_span,
@@ -327,7 +331,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
327
331
verb : & str ,
328
332
optional_adverb_for_moved : & str ,
329
333
moved_path : Option < String > ,
330
- ) -> DiagnosticBuilder < ' tcx > {
334
+ ) -> DiagnosticBuilder < ' tcx , ErrorReported > {
331
335
let moved_path = moved_path. map ( |mp| format ! ( ": `{}`" , mp) ) . unwrap_or_default ( ) ;
332
336
333
337
struct_span_err ! (
@@ -346,7 +350,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
346
350
span : Span ,
347
351
path : & str ,
348
352
reason : & str ,
349
- ) -> DiagnosticBuilder < ' cx > {
353
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
350
354
struct_span_err ! ( self , span, E0596 , "cannot borrow {} as mutable{}" , path, reason, )
351
355
}
352
356
@@ -357,7 +361,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
357
361
immutable_place : & str ,
358
362
immutable_section : & str ,
359
363
action : & str ,
360
- ) -> DiagnosticBuilder < ' cx > {
364
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
361
365
let mut err = struct_span_err ! (
362
366
self ,
363
367
mutate_span,
@@ -376,7 +380,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
376
380
& self ,
377
381
span : Span ,
378
382
yield_span : Span ,
379
- ) -> DiagnosticBuilder < ' cx > {
383
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
380
384
let mut err = struct_span_err ! (
381
385
self ,
382
386
span,
@@ -387,7 +391,10 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
387
391
err
388
392
}
389
393
390
- crate fn cannot_borrow_across_destructor ( & self , borrow_span : Span ) -> DiagnosticBuilder < ' cx > {
394
+ crate fn cannot_borrow_across_destructor (
395
+ & self ,
396
+ borrow_span : Span ,
397
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
391
398
struct_span_err ! (
392
399
self ,
393
400
borrow_span,
@@ -400,7 +407,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
400
407
& self ,
401
408
span : Span ,
402
409
path : & str ,
403
- ) -> DiagnosticBuilder < ' cx > {
410
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
404
411
struct_span_err ! ( self , span, E0597 , "{} does not live long enough" , path, )
405
412
}
406
413
@@ -410,7 +417,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
410
417
return_kind : & str ,
411
418
reference_desc : & str ,
412
419
path_desc : & str ,
413
- ) -> DiagnosticBuilder < ' cx > {
420
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
414
421
let mut err = struct_span_err ! (
415
422
self ,
416
423
span,
@@ -435,7 +442,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
435
442
closure_kind : & str ,
436
443
borrowed_path : & str ,
437
444
capture_span : Span ,
438
- ) -> DiagnosticBuilder < ' cx > {
445
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
439
446
let mut err = struct_span_err ! (
440
447
self ,
441
448
closure_span,
@@ -454,11 +461,14 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
454
461
crate fn thread_local_value_does_not_live_long_enough (
455
462
& self ,
456
463
span : Span ,
457
- ) -> DiagnosticBuilder < ' cx > {
464
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
458
465
struct_span_err ! ( self , span, E0712 , "thread-local variable borrowed past end of function" , )
459
466
}
460
467
461
- crate fn temporary_value_borrowed_for_too_long ( & self , span : Span ) -> DiagnosticBuilder < ' cx > {
468
+ crate fn temporary_value_borrowed_for_too_long (
469
+ & self ,
470
+ span : Span ,
471
+ ) -> DiagnosticBuilder < ' cx , ErrorReported > {
462
472
struct_span_err ! ( self , span, E0716 , "temporary value dropped while borrowed" , )
463
473
}
464
474
@@ -467,7 +477,7 @@ impl<'cx, 'tcx> crate::MirBorrowckCtxt<'cx, 'tcx> {
467
477
sp : S ,
468
478
msg : & str ,
469
479
code : DiagnosticId ,
470
- ) -> DiagnosticBuilder < ' tcx > {
480
+ ) -> DiagnosticBuilder < ' tcx , ErrorReported > {
471
481
self . infcx . tcx . sess . struct_span_err_with_code ( sp, msg, code)
472
482
}
473
483
}
@@ -476,7 +486,7 @@ crate fn borrowed_data_escapes_closure<'tcx>(
476
486
tcx : TyCtxt < ' tcx > ,
477
487
escape_span : Span ,
478
488
escapes_from : & str ,
479
- ) -> DiagnosticBuilder < ' tcx > {
489
+ ) -> DiagnosticBuilder < ' tcx , ErrorReported > {
480
490
struct_span_err ! (
481
491
tcx. sess,
482
492
escape_span,
0 commit comments