mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
Fix issue with ctl::vector constructor
This commit is contained in:
parent
4cb5e21ba8
commit
387310c659
8 changed files with 70 additions and 24 deletions
|
@ -352,5 +352,13 @@ main()
|
|||
return 80;
|
||||
}
|
||||
|
||||
{
|
||||
ctl::vector<int> dog(8, 0);
|
||||
if (dog.size() != 8)
|
||||
return 81;
|
||||
if (dog[0] != 0)
|
||||
return 82;
|
||||
}
|
||||
|
||||
CheckForMemoryLeaks();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue