mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
8 lines
96 B
C++
8 lines
96 B
C++
class Base {
|
|
public:
|
|
virtual void foo() = 0;
|
|
};
|
|
|
|
class Deriv : public Base {
|
|
void foo();
|
|
};
|