Fix tests using FixedSizeArray methods (which are now shadowed)

This commit is contained in:
Lukas Kalbertodt 2020-08-30 21:07:23 +02:00
parent 104a02301c
commit d7afe2a223
No known key found for this signature in database
GPG key ID: AA5025CF1CC85754
3 changed files with 1 additions and 2 deletions

View file

@ -1,5 +1,6 @@
#![feature(alloc_layout_extra)]
#![feature(array_chunks)]
#![feature(array_methods)]
#![feature(array_map)]
#![feature(bool_to_option)]
#![feature(bound_cloned)]

View file

@ -1,4 +1,3 @@
use core::array::FixedSizeArray;
use core::clone::Clone;
use core::mem;
use core::ops::DerefMut;

View file

@ -1,4 +1,3 @@
use core::array::FixedSizeArray;
use core::ops::DerefMut;
use core::option::*;