aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp17.C
blob: 0816b3665b594139570bad6efc252b27b05c61c0 (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
// Build don't run:
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

template <class V>
struct S {
  template <class T, class U>
  S(T, U, T);
};


template <class V>
template <class T, class U>
S<V>::S(T t1, U u1, T t2)
{
  printf("Hello, world.\n");
}


int main()
{
  S<int> s1(3, "abc", 3);
  S<int> s2('a', s1, 'a');

  S<char> s3("abc", 3, "abc");
}