aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/cast2.C
blob: 02495b346d1d839f072cf4524b31bd22cf87b53d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link:
// The compiler tried to build up a double with a NOP_EXPR from
// integer_zero_node, which fails.

template <class T>
class vector  {
public:
    vector (int n, const T& value = T()) {}
};

void
foo (void)
{
  vector<double> v (10);
}