2 // PR 11228: array operator new, with zero-initialization and a variable sized array.
3 // Regression test for PR
4 // Author: Matt Austern <austern@apple.com>
14 p = malloc(n * sizeof (int));
15 memset (p, 0xff, n * sizeof(int));
16 return new (p) int[n]();
23 for (int i = 0; i < n; ++i)