old-cross-binutils/gdb/testsuite/gdb.c++/pr-1023.cc
Michael Chastain 5af1d5f3ff 2003-02-03 Michael Chastain <mec@shout.net>
* gdb.c++/pr-1023.cc: New file.
	* gdb.c++/pr-1023.exp: New file.
2003-02-05 06:38:33 +00:00

20 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);
}