summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp65.C
blob: ef49d84317e0562e7ea273054b9fcfbb17e662af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Build don't link:

template<unsigned int n> struct PartialDotProduct {
    template<class T>
    static T Expand(T* a, T* b) { return T(); }
};

const int N = 10;

template<class In1, class In2>
void
dot(In1 f1, In2 f2)
{
  PartialDotProduct<N>::Expand(f1, f2);

}

int main()
{
  double a[N], b[N];
  
  dot(&a[0], &b[0]);
}