aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/ctor6.C
blob: a25ecab1fa76f4aa53be163ac8de690536c493a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/21340

struct Base{};
struct Iterator : virtual Base {};
bool operator==(const Iterator&, const Iterator&);
struct IteratorI : Iterator {};
struct Obj
{
  bool operator==(const Obj&) const;
};
template <int>bool dummy()
{
  Obj lhs, rhs;
  return lhs == rhs;
}
int
main(int argc, char** argv)
{
  IteratorI* it2 = new IteratorI();
}