blob: 452746c87bbd99bd25f10390c2a0cce8e9693956 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <map>
// class map
// map();
#include <map>
#if !__has_feature(cxx_noexcept)
struct X
{
std::multimap<int, X> m;
};
#endif
int main()
{
}