summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/using3.C
blob: 11f2899c592b6a39c505a8829fd7dc529002f8bc (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
32
33
34
35
36
37
38
39
40
41
42
// { dg-do run }

// 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 (int) {return 1;}
};

struct Baz 
{
  int k (int) {return 2;}
};

template <class T>
struct Bar : public Foo<T> , Baz {
  using Foo<T>::i;
  using Baz::k;

  int i (float) {return 3;}
  int k (float) {return 3;}
  
  int foo()
  {
    if (i (1) != 1)
      return 1;
    if (k (1) != 2)
      return 2;

    return 0;
  }
};

int main()
{
  Bar<int> bar;

  return bar.foo();
}