mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 05:05:29 +00:00
14 lines
210 B
C++
14 lines
210 B
C++
#include "nscore.h"
|
|
|
|
struct Base {
|
|
NS_MUST_OVERRIDE void f();
|
|
};
|
|
|
|
struct Intermediate : Base {
|
|
NS_MUST_OVERRIDE void f();
|
|
};
|
|
|
|
struct Derived : Intermediate {
|
|
// error: must override Intermediate's f()
|
|
};
|