aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/using2.C
blob: 5987254d432f7d43d82ebe9858a94475d2e87408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 22 Jul 2003 <nathan@codesourcery.com>

// PR 9447. Using decls in template classes.

template <class T>
struct Foo {
  int i;
};

struct Baz 
{
  int i;
};

template <class T>
struct Bar : public Foo<T>, Baz
{
  using Foo<T>::i; // { dg-message "previous declaration" }
  using Baz::i; // { dg-error "redeclaration" }

  int foo () { return i; }
};

void foo (Bar<int> &bar)
{
  bar.foo();
}