2011-04-03 20:06:31 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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>
|
2011-04-04 01:42:30 +00:00
|
|
|
|
2012-05-25 22:04:21 +00:00
|
|
|
#if !__has_feature(cxx_noexcept)
|
|
|
|
|
2011-04-04 01:42:30 +00:00
|
|
|
struct X
|
|
|
|
{
|
2013-06-19 21:29:40 +00:00
|
|
|
std::map<int, X> m;
|
2011-04-04 01:42:30 +00:00
|
|
|
};
|
2011-04-03 20:06:31 +00:00
|
|
|
|
2012-05-25 22:04:21 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-03 20:06:31 +00:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
}
|