f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
15 lines
452 B
C++
15 lines
452 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
class Base {
|
|
virtual ~Base(); // expected-note {{implicitly declared private here}}
|
|
};
|
|
struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}}
|
|
const int kBlah = 3; // expected-warning {{is a C++11 extension}}
|
|
Foo();
|
|
};
|
|
struct Bar : public Foo {
|
|
Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}}
|
|
};
|
|
struct Baz {
|
|
Foo f;
|
|
Baz() { }
|
|
};
|