summaryrefslogtreecommitdiffstats
path: root/libcxx/test/libcxx/containers/gnu_cxx/hash_map.pass.cpp
blob: 0d9115d0f6938ee731566e283612b291c4bdc4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//===----------------------------------------------------------------------===//
//
//                     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.
//
//===----------------------------------------------------------------------===//

// Prevent emission of the deprecated warning.
#ifdef __clang__
#pragma clang diagnostic ignored "-W#warnings"
#endif

#include <ext/hash_map>

namespace __gnu_cxx {
template class hash_map<int, int>;
}

int main() {
  typedef __gnu_cxx::hash_map<int, int> Map;
  Map m;
  Map m2(m);
  ((void)m2);
}
OpenPOWER on IntegriCloud