]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/abi/demangle/regression/cw-02.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / abi / demangle / regression / cw-02.cc
CommitLineData
4ffbd077
BK
1// 2003-02-26 Carlo Wood <carlo@alinoe.com>
2
85ec4feb 3// Copyright (C) 2003-2018 Free Software Foundation, Inc.
4ffbd077
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)
4ffbd077
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/>.
4ffbd077
BK
19
20// IA 64 C++ ABI - 5.1 External Names (a.k.a. Mangling)
21
22#include <testsuite_hooks.h>
23
24// libcwd tests
25int main()
26{
aecf642c 27 using namespace __gnu_test;
4ffbd077
BK
28
29/*
30namespace libcw {
31 namespace debug {
32 class memblk_types_manipulator_data_ct { };
33 }
34 template<typename T>
35 class omanip_id_tct { };
36 namespace {
37 template<typename T>
38 class compiler_bug_workaround {
39 public:
40 static std::vector<int> ids;
41 };
42 template<typename T>
43 std::vector<int> compiler_bug_workaround<T>::ids;
44 typedef std::vector<libcw::omanip_id_tct<libcw::debug::memblk_types_manipulator_data_ct> > vector_t;
45 compiler_bug_workaround<vector_t> dummy;
46 }
47}
48
49void g(void)
50{
51 // Instantiation.
52 libcw::dummy.ids.size();
53}
54*/
55 verify_demangle("_ZGVN5libcw24_GLOBAL__N_cbll.cc0ZhUKa23compiler_bug_workaroundISt6vectorINS_13omanip_id_tctINS_5debug32memblk_types_manipulator_data_ctEEESaIS6_EEE3idsE", "guard variable for libcw::(anonymous namespace)::compiler_bug_workaround<std::vector<libcw::omanip_id_tct<libcw::debug::memblk_types_manipulator_data_ct>, std::allocator<libcw::omanip_id_tct<libcw::debug::memblk_types_manipulator_data_ct> > > >::ids");
56
57 return 0;
58}