OSDN Git Service

r284@cf-ppc-macosx: monabuilder | 2008-12-07 10:57:41 +0900
[pf3gnuchains/pf3gnuchains3x.git] / gdb / testsuite / gdb.cp / pr-1023.cc
1 class myClass
2 {
3   public:
4     myClass() {};
5     ~myClass() {};
6     void performUnblocking( short int cell_index );
7     void performBlocking( int cell_index );
8 };
9
10 void myClass::performUnblocking( short int cell_index ) {}
11
12 void myClass::performBlocking( int cell_index ) {}
13
14 int main ()
15 {
16   myClass mc;
17   mc.performBlocking (0);
18   mc.performUnblocking (0);
19 }
20