blob: db5095a9bd5eed7cb0e17180249f4545cf2717e0 [file] [log] [blame]
// PR c++/91506
double
test(int *arr, int x)
{
double ret(double(arr[x]) + 1);
return ret;
}