5
5
//! to be const-safe.
6
6
7
7
use std:: convert:: TryFrom ;
8
- use std:: fmt:: Write ;
8
+ use std:: fmt:: { Display , Write } ;
9
9
use std:: num:: NonZeroUsize ;
10
10
11
11
use rustc_ast:: Mutability ;
@@ -308,7 +308,7 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValidityVisitor<'rt, 'mir, '
308
308
fn read_immediate (
309
309
& self ,
310
310
op : & OpTy < ' tcx , M :: Provenance > ,
311
- expected : & str ,
311
+ expected : impl Display ,
312
312
) -> InterpResult < ' tcx , ImmTy < ' tcx , M :: Provenance > > {
313
313
Ok ( try_validation ! (
314
314
self . ecx. read_immediate( op) ,
@@ -321,7 +321,7 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValidityVisitor<'rt, 'mir, '
321
321
fn read_scalar (
322
322
& self ,
323
323
op : & OpTy < ' tcx , M :: Provenance > ,
324
- expected : & str ,
324
+ expected : impl Display ,
325
325
) -> InterpResult < ' tcx , Scalar < M :: Provenance > > {
326
326
Ok ( self . read_immediate ( op, expected) ?. to_scalar ( ) )
327
327
}
@@ -370,7 +370,8 @@ impl<'rt, 'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> ValidityVisitor<'rt, 'mir, '
370
370
value : & OpTy < ' tcx , M :: Provenance > ,
371
371
kind : & str ,
372
372
) -> InterpResult < ' tcx > {
373
- let place = self . ecx . ref_to_mplace ( & self . read_immediate ( value, & format ! ( "a {kind}" ) ) ?) ?;
373
+ let place =
374
+ self . ecx . ref_to_mplace ( & self . read_immediate ( value, format_args ! ( "a {kind}" ) ) ?) ?;
374
375
// Handle wide pointers.
375
376
// Check metadata early, for better diagnostics
376
377
if place. layout . is_unsized ( ) {
0 commit comments