blob: 713a5269f1431ed8cc86b9f0e7c7799c420dc87e [file] [log] [blame]
// RUN: %clang_cc1 -std=c++1z -verify %s
// no objects of an abstract class can be created except as subobjects of a
// class derived from it
struct A {
A() {}
A(int) : A() {} // ok
virtual void f() = 0; // expected-note 1+{{unimplemented}}
};
void f(A &&a);
void g() {
f({}); // expected-error {{abstract class}}
f({0}); // expected-error {{abstract class}}
f(0); // expected-error {{abstract class}}
}
struct B : A {
B() : A() {} // ok
};