File tree 1 file changed +7
-7
lines changed
src/test/ui/const-generics/array-impls
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,31 +10,31 @@ use std::{
10
10
} ;
11
11
12
12
pub fn yes_iterator ( ) -> impl Iterator < Item = i32 > {
13
- IntoIter :: new ( [ 0i32 ; 32 ] )
13
+ IntoIter :: new ( [ 0i32 ; 33 ] )
14
14
}
15
15
16
16
pub fn yes_double_ended_iterator ( ) -> impl DoubleEndedIterator {
17
- IntoIter :: new ( [ 0i32 ; 32 ] )
17
+ IntoIter :: new ( [ 0i32 ; 33 ] )
18
18
}
19
19
20
20
pub fn yes_exact_size_iterator ( ) -> impl ExactSizeIterator {
21
- IntoIter :: new ( [ 0i32 ; 32 ] )
21
+ IntoIter :: new ( [ 0i32 ; 33 ] )
22
22
}
23
23
24
24
pub fn yes_fused_iterator ( ) -> impl FusedIterator {
25
- IntoIter :: new ( [ 0i32 ; 32 ] )
25
+ IntoIter :: new ( [ 0i32 ; 33 ] )
26
26
}
27
27
28
28
pub fn yes_trusted_len ( ) -> impl TrustedLen {
29
- IntoIter :: new ( [ 0i32 ; 32 ] )
29
+ IntoIter :: new ( [ 0i32 ; 33 ] )
30
30
}
31
31
32
32
pub fn yes_clone ( ) -> impl Clone {
33
- IntoIter :: new ( [ 0i32 ; 32 ] )
33
+ IntoIter :: new ( [ 0i32 ; 33 ] )
34
34
}
35
35
36
36
pub fn yes_debug ( ) -> impl Debug {
37
- IntoIter :: new ( [ 0i32 ; 32 ] )
37
+ IntoIter :: new ( [ 0i32 ; 33 ] )
38
38
}
39
39
40
40
You can’t perform that action at this time.
0 commit comments