| author | |
| committer | |
| log | 50b36e84fab023ec418eb794d6a5b4510ac6b984 |
| tree | 048b94effc3ef40fe22603099579ba3c051d751a |
| parent | 1db99b08e29dd4c8e3dbb8d91e7f0139ec75a008 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/bounded_array.zig+1-1| ... | ... | @@ -275,7 +275,7 @@ test "BoundedArray" { |
| 275 | 275 | try testing.expectEqualSlices(u8, &x, a.constSlice()); |
| 276 | 276 | |
| 277 | 277 | var a2 = a; |
| 278 | try testing.expectEqualSlices(u8, a.constSlice(), a.constSlice()); | |
| 278 | try testing.expectEqualSlices(u8, a.constSlice(), a2.constSlice()); | |
| 279 | 279 | a2.set(0, 0); |
| 280 | 280 | try testing.expect(a.get(0) != a2.get(0)); |
| 281 | 281 |