blob: d0dc6d8bc51c4ff39ecd3b18f44a14b6c4ade7b5 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct Base
{
virtual int b() const{return 1;};
};
struct Super:Base{};
int main()
{
constexpr Super s;
[]{s.b();}(); // { dg-error "not captured" }
}