Language
C++
Compiler
gcc HEAD 10.0.0 20190919 (experimental)
Options
Warnings
Don't Use Boost
C++17
-pedantic-errors
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic-errors
Exit Code:
1
Author
anonymous
over 5 years ago
C++
gcc HEAD 10.0.0 20190919 (experimental)
Author
anonymous
over 5 years ago
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic-errors
prog.cc: In function 'int main()':
prog.cc:24:21: error: 'class Outer::Inner' is private within this context
24 | auto i = Outer::Inner();
| ^~~~~
prog.cc:7:15: note: declared private here
7 | class Inner
| ^~~~~