File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
in_language_tests/test_programs/storage_vec_iter_tests/src Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,7 @@ impl TestInstance for RawPtrNewtype {
308308}
309309
310310impl AbiEncode for RawPtrNewtype {
311+ fn is_memcopy () -> bool { false }
311312 fn abi_encode (self , buffer : Buffer ) -> Buffer {
312313 let ptr_as_u64 = asm(p : self . ptr) {
313314 p : u64
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ pub(super) async fn run(filter_regex: Option<®ex::Regex>) -> Result<()> {
234234 }
235235 continue ;
236236 } else if let Some ( txt) = cmd. strip_prefix ( "echo " ) {
237- let mut words = txt. trim ( ) . split ( " " ) ;
237+ let words = txt. trim ( ) . split ( " " ) ;
238238 let mut width = 0 ;
239239 for word in words {
240240 let _ = write ! ( & mut snapshot, "{} " , word) ;
You can’t perform that action at this time.
0 commit comments