PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / Wwrite-strings-1.c
blob24547d02bd806aede20d3c5dbc96a6d3773a77be
1 /* Test pointer initialization and dereference don't lose qualifiers
2 on array types. This test wrongly failed to diagnose the loss of
3 const. */
4 /* Origin: Joseph Myers <joseph@codesourcery.com> */
5 /* { dg-do compile } */
6 /* { dg-options "-Wwrite-strings" } */
7 typedef char T[1];
8 T *p = &""; /* { dg-warning "initialization discards 'const' qualifier from pointer target type" } */