blob: 02495b346d1d839f072cf4524b31bd22cf87b53d [file] [log] [blame]
// 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);
}