// RUN: %clang_cc1 -fsyntax-only -verify %s
structBaseReturn{};structBase{virtual BaseReturn Foo()=0;// expected-note{{overridden virtual function is here}}
};structX{};structDerived:Base{XFoo();// expected-error{{virtual function 'Foo' has a different return type ('X') than the function it overrides (which has return type 'BaseReturn')}}
};
Derived d;