aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/scoped3.C
blob: 12ef8c8a578c3e44606c475dc30d5053ba2a1e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

// { dg-do compile }

// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 Dec 2002 <nathan@codesourcery.com>

// PR 7964. ICE with scoped method call

struct A {
  virtual void ostr() const;
};

class B : public virtual A {};

template<typename T>
struct C : public B
{
  void ostr() const
  {    B::ostr();  }
};


template struct C<int>;