mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
5af1d5f3ff
* gdb.c++/pr-1023.cc: New file. * gdb.c++/pr-1023.exp: New file.
21 lines
360 B
C++
21 lines
360 B
C++
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);
|
|
}
|
|
|