summaryrefslogtreecommitdiffstats
path: root/libcxx/test/libcxx/containers/associative/undef_min_max.pass.cpp
blob: 8ebd8a4ae213cc8b9d51566edcf037813aa91825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic ignored "-W#warnings"
#endif

#define min THIS IS A NASTY MACRO!
#define max THIS IS A NASTY MACRO!

#include <map>

int main() {
  std::map<int, int> m;
  ((void)m);
}
OpenPOWER on IntegriCloud