//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class map // mapped_type& operator[](const key_type& k); // http://llvm.org/bugs/show_bug.cgi?id=16542 #include #ifndef _LIBCPP_HAS_NO_VARIADICS #include #endif int main() { #ifndef _LIBCPP_HAS_NO_VARIADICS using namespace std; map, size_t> m; m[make_tuple(2,3)]=7; #endif }