Language
C++
Compiler
clang 9.0.0
Options
Warnings
Boost 1.73.0
C++2a(GNU)
-pedantic-errors
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/clang-9.0.0/include -std=gnu++2a -pedantic-errors
Exit Code:
1
Author
anonymous
almost 5 years ago
C++
clang 9.0.0
Author
anonymous
almost 5 years ago
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/clang-9.0.0/include -std=gnu++2a -pedantic-errors
prog.cc:27:38: error: 'Base' is a private member of 'Base'
explicit Derived(std::unique_ptr<Base> base) : base_{std::move(base)} {}
^
prog.cc:19:21: note: constrained by private inheritance here
class AnotherBase : private Base {
^~~~~~~~~~~~
prog.cc:6:7: note: member is declared here
class Base {
^
prog.cc:34:21: error: 'Base' is a private member of 'Base'
std::unique_ptr<Base> base_;
^
prog.cc:19:21: note: constrained by private inheritance here
class AnotherBase : private Base {
^~~~~~~~~~~~
prog.cc:6:7: note: member is declared here
class Base {
^
2 errors generated.