Skip to content

Commit

Permalink
Enable test lines that had been blocked by issue 2486
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Mar 12, 2013
1 parent ab10ad4 commit 4ca1b61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/typecons.d
Expand Up @@ -3070,8 +3070,8 @@ unittest
assert(cast(ulong[])a == [0x0000_0001_0000_0002, 0x0000_0003_0000_0004]);
assert(a ~ [10,11] == [1,2,3,4,10,11]);
assert(a[0] == 1);
//assert(a[] == [1,2,3,4]); // blocked by bug 2486
//assert(a[2..4] == [3,4]); // blocked by bug 2486
assert(a[] == [1,2,3,4]);
assert(a[2..4] == [3,4]);
a = a;
a = [5,6,7,8]; assert(a == [5,6,7,8]);
a[0] = 0; assert(a == [0,6,7,8]);
Expand Down

0 comments on commit 4ca1b61

Please sign in to comment.