summaryrefslogtreecommitdiffstats
path: root/Source/Checks/cm_cxx_unordered_set.cxx
blob: de4bb776576285da492546d29525d89a7558cf32 (plain)
1
2
3
4
5
6
7
#include <unordered_set>
int main()
{
  std::unordered_set<int> set;
  set.insert(0);
  return 0;
}