Merge from mainline
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / set / operators / 1_neg.cc
blob48f6ae68f69f7c2d1b086bb5fc472b07b5e2dc71
1 // { dg-do compile }
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // 23.3.4 template class multiset negative tests
23 // 2000-09-07 bgarcia@laurelnetworks.com
25 #include <set>
26 #include <string>
28 // libstdc++/86: map & set iterator comparisons are not type-safe
29 void test01()
31 bool test __attribute__((unused)) = true;
33 std::set<unsigned int> setByIndex;
34 std::set<std::string> setByName;
36 std::set<unsigned int>::iterator itr(setByIndex.begin());
38 // NB: it's not setByIndex!!
39 test &= itr != setByName.end(); // { dg-error "no" }
40 test &= itr == setByName.end(); // { dg-error "no" }
43 // { dg-error "candidates are" "" { target *-*-* } 286 }
44 // { dg-error "candidates are" "" { target *-*-* } 290 }