diff options
| author | Bastian Kauschke <bastian_kauschke@hotmail.de> | 2020-03-27 21:56:19 +0100 |
|---|---|---|
| committer | Bastian Kauschke <bastian_kauschke@hotmail.de> | 2020-03-31 19:01:49 +0200 |
| commit | 698b20eedaff60aaed3b1f0bd1bec7d8c095f6a4 (patch) | |
| tree | 8965e5acd8f8b455a03cddf42be116485aae2b71 /src/test/ui/array-slice-vec | |
| parent | 21c5ccab10b30085479a7189ee555f77c47c79e7 (diff) | |
| download | rust-698b20eedaff60aaed3b1f0bd1bec7d8c095f6a4.tar.gz rust-698b20eedaff60aaed3b1f0bd1bec7d8c095f6a4.zip | |
update tests
Diffstat (limited to 'src/test/ui/array-slice-vec')
| -rw-r--r-- | src/test/ui/array-slice-vec/vec-fixed-length.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/array-slice-vec/vec-fixed-length.rs b/src/test/ui/array-slice-vec/vec-fixed-length.rs index 5db02ee066b..908c39c7951 100644 --- a/src/test/ui/array-slice-vec/vec-fixed-length.rs +++ b/src/test/ui/array-slice-vec/vec-fixed-length.rs @@ -9,7 +9,7 @@ fn test_big_vec() {} #[cfg(target_pointer_width = "64")] fn test_big_vec() { - assert_eq!(size_of::<[u8; (1 << 32)]>(), (1 << 32)); + assert_eq!(size_of::<[u8; 1 << 32]>(), (1 << 32)); } fn main() { |
