1189d6a88SEric Fiselier //===----------------------------------------------------------------------===//
2189d6a88SEric Fiselier //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6189d6a88SEric Fiselier //
7189d6a88SEric Fiselier //===----------------------------------------------------------------------===//
8189d6a88SEric Fiselier 
9189d6a88SEric Fiselier // <stdexcept>
10189d6a88SEric Fiselier 
11189d6a88SEric Fiselier #include <stdexcept>
12189d6a88SEric Fiselier 
13*7fc6a556SMarshall Clow #include "test_macros.h"
14*7fc6a556SMarshall Clow 
15189d6a88SEric Fiselier #ifndef _LIBCPP_VERSION
16189d6a88SEric Fiselier #error _LIBCPP_VERSION not defined
17189d6a88SEric Fiselier #endif
18189d6a88SEric Fiselier 
main(int,char **)192df59c50SJF Bastien int main(int, char**)
20189d6a88SEric Fiselier {
212df59c50SJF Bastien 
222df59c50SJF Bastien   return 0;
23189d6a88SEric Fiselier }
24