You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Compile with:
|
|
//
|
|
// g++ -g -Wall -c test1-voffset-change-v0.cc
|
|
//
|
|
|
|
class C
|
|
{
|
|
public:
|
|
virtual int virtual_func0();
|
|
virtual char virtual_func1();
|
|
};
|
|
|
|
int
|
|
C::virtual_func0()
|
|
{return 0;}
|
|
|
|
char
|
|
C::virtual_func1()
|
|
{return 0;}
|