aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/array60.C
blob: db5095a9bd5eed7cb0e17180249f4545cf2717e0 (plain)
1
2
3
4
5
6
7
8
// PR c++/91506

double
test(int *arr, int x)
{
    double ret(double(arr[x]) + 1);
    return ret;
}