1 // PR c++/15269
2 
3 struct B {
4     virtual int foo() __attribute__((deprecated));
5 };
6 
main(void)7 int main(void) {
8   ((B*)0)->foo(); 		// { dg-warning "deprecated" }
9 }
10