OSDN Git Service

PR c++/37276
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / pr35711.C
1 // PR 35711
2 // { dg-do compile }
3 // { dg-options "-Wcast-qual" }
4
5 int* foo (volatile int *p)
6 {
7   return (int*)p; // { dg-warning "cast from type 'volatile int\\*' to type 'int\\*' casts away qualifiers" }
8 }