1// Copyright (c) 2013 Google Inc. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5#if __cplusplus != 199711L 6#error wrong c++ standard version 7#endif 8 9enum cxx11_keywords { 10 alignas, 11 alignof, 12 char16_t, 13 char32_t, 14 constexpr, 15 decltype, 16 noexcept, 17 nullptr, 18 override, 19 static_assert, 20 thread_local, 21}; 22 23int main() { return 0; } 24 25