Skip to content

Commit

Permalink
tests suits for map
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Nyarko authored and Emmanuel Nyarko committed May 17, 2024
1 parent 6fb71c4 commit 1b717eb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions source/stdcpp/test/map.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*******************************************************************************
Tests for `std::map`
*******************************************************************************/

module stdcpp.test.map;

import stdcpp.map;

unittest
{
auto mymap = Map!(int, char).make();
mymap.opIndexAssign(4, 'a');
}

0 comments on commit 1b717eb

Please sign in to comment.