Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / expr / static_cast4.C
blobcea7f4873938deced3cabab7c30d1d640c3aa91e
1 class C { 
2 public: 
3     explicit C(int) {} 
4 }; 
5  
6 int main() 
7
8     int i = 0; 
9     static_cast<C>(i); 
10     return 0;