summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/clang-cxx-language-standard/c++98.cc
blob: a6a00c70f497f37bf5e8bafc3d9af48f8ea7030f (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
// Copyright (c) 2013 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#if __cplusplus != 199711L
#error wrong c++ standard version
#endif

enum cxx11_keywords {
  alignas,
  alignof,
  char16_t,
  char32_t,
  constexpr,
  decltype,
  noexcept,
  nullptr,
  override,
  static_assert,
  thread_local,
};

int main() { return 0; }