]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/17_intro/using_namespace_std_tr1_neg.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 17_intro / using_namespace_std_tr1_neg.cc
CommitLineData
52066eae 1// { dg-do compile { target c++11 } }
af13a7a6 2
8d9254fc 3// Copyright (C) 2007-2020 Free Software Foundation, Inc.
af13a7a6
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
af13a7a6
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
af13a7a6 19
932f6f4a 20// NB: parallel-mode uses TR1 bits...
61e619b4 21// { dg-skip-if "" { *-*-* } { "-D_GLIBCXX_PARALLEL" } }
932f6f4a 22
af13a7a6
BK
23#include <algorithm>
24#include <array>
25#include <bitset>
26#include <complex>
27#include <deque>
28#include <exception>
29#include <fstream>
30#include <functional>
31#include <iomanip>
32#include <ios>
33#include <iosfwd>
34#include <iostream>
35#include <istream>
36#include <iterator>
37#include <limits>
38#include <list>
39#include <locale>
40#include <map>
41#include <memory>
42#include <new>
43#include <numeric>
44#include <ostream>
45#include <queue>
46#include <random>
47#include <regex>
48#include <set>
49#include <sstream>
50#include <stack>
51#include <stdexcept>
52#include <streambuf>
53#include <string>
54#include <tuple>
55#include <typeinfo>
56#include <type_traits>
57#include <unordered_map>
58#include <unordered_set>
59#include <utility>
60#include <valarray>
61#include <vector>
62
63namespace gnu
64{
65 using namespace std::tr1; // { dg-error "is not a namespace-name" }
66}