aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/ctor1-aux.cc
blob: 9990ca29322d5a943e0d451b28b6b3d7d700d96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Origin: Mark Mitchell <mark@codesourcery.com>

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

int main ()
{
  S<int> (3.0);
}