forked from mirrors/gecko-dev
Reformatting this directory can break some of the tests here. Differential Revision: https://phabricator.services.mozilla.com/D13518
8 lines
No EOL
95 B
C++
8 lines
No EOL
95 B
C++
class Base {
|
|
public:
|
|
virtual void foo() = 0;
|
|
};
|
|
|
|
class Deriv : public Base {
|
|
void foo();
|
|
}; |