summaryrefslogtreecommitdiffstats
path: root/Source/Checks/cm_cxx_unordered_map.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Checks/cm_cxx_unordered_map.cxx')
-rw-r--r--Source/Checks/cm_cxx_unordered_map.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/Checks/cm_cxx_unordered_map.cxx b/Source/Checks/cm_cxx_unordered_map.cxx
new file mode 100644
index 0000000..be3de25
--- /dev/null
+++ b/Source/Checks/cm_cxx_unordered_map.cxx
@@ -0,0 +1,7 @@
+#include <unordered_map>
+int main()
+{
+ std::unordered_map<int, int> map;
+ map[0] = 0;
+ return 0;
+}