aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit14.C
blob: aa9d03fca75cd5c3c5e1bd79ecaa4bd598852b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:
// GROUPS passed templates
template <class T>
struct S
{
  template <class U>
  typename U::R foo(U u);
};


void bar()
{
  S<int> si;
}