//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template , class Pred = equal_to, // class Alloc = allocator>> // class unordered_map // mapped_type& operator[](const key_type& k); // http://llvm.org/bugs/show_bug.cgi?id=16542 #include #ifndef _LIBCPP_HAS_NO_VARIADICS #include using namespace std; struct my_hash { size_t operator()(const tuple&) const {return 0;} }; #endif int main() { #ifndef _LIBCPP_HAS_NO_VARIADICS unordered_map, size_t, my_hash> m; m[make_tuple(2,3)]=7; #endif }