remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr37985.c
1 /* PR c37985 */
2 /* { dg-do compile } */
3 /* { dg-options " -Wall -Wextra " } */
4 unsigned char foo(unsigned char a)
5 {
6   a >> 2; /* { dg-warning "no effect" } */
7   return a;
8 }