https://github.com/mozilla/gecko-dev
Raw File
Tip revision: eb17cca53e5f453724c0a8ca5a12d7971e2b4442 authored by ffxbld on 16 May 2012, 00:43:38 UTC
Added FENNEC_13_0b2_RELEASE FENNEC_13_0b2_BUILD3 tag(s) for changeset 88ee14110a74. DONTBUILD CLOSED TREE a=release
Tip revision: eb17cca
OverrideFail4.cpp
#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()
};
back to top