OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wunused-10.C
1 // PR c++/19190
2 // { dg-options "-Wunused" }
3
4 struct breakme 
5
6   void setAction( unsigned char a ) { act = a; } 
7   unsigned int act:8; 
8 };