aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.cp/pr-1023.cc
blob: 156f48612c8fa712941bc4ca8b8f099a8fcf92b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class myClass
{
  public:
    myClass() {};
    ~myClass() {};
    void performUnblocking( short int cell_index );
    void performBlocking( int cell_index );
};

void myClass::performUnblocking( short int cell_index ) {}

void myClass::performBlocking( int cell_index ) {}

int main ()
{
  myClass mc;
  mc.performBlocking (0);
  mc.performUnblocking (0);

  return 0;
}