2011-04-03 22:06:31 +02: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 03:42:30 +02:00
|
|
|
|
|
|
|
struct X
|
|
|
|
{
|
|
|
|
std::multimap<int, X> m;
|
|
|
|
};
|
2011-04-03 22:06:31 +02:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
}
|