128166dd9SMarshall Clow //===----------------------------------------------------------------------===//
228166dd9SMarshall Clow //
3a20f6110SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4a20f6110SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5a20f6110SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
628166dd9SMarshall Clow //
728166dd9SMarshall Clow //===----------------------------------------------------------------------===//
828166dd9SMarshall Clow 
928166dd9SMarshall Clow // Tests workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37804
1028166dd9SMarshall Clow 
1128166dd9SMarshall Clow #include <map>
1228166dd9SMarshall Clow std::map<int,int>::iterator it;
1328166dd9SMarshall Clow #include <set>
14*7fc6a556SMarshall Clow 
15*7fc6a556SMarshall Clow #include "test_macros.h"
1628166dd9SMarshall Clow using std::set;
1728166dd9SMarshall Clow using std::multiset;
1828166dd9SMarshall Clow 
main(int,char **)192df59c50SJF Bastien int main(int, char**) { return 0; }
20