Language
C++
Compiler
gcc HEAD 8.0.1 20180415 (experimental)
Options
Warnings
Boost 1.67.0
C++2a(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.67.0/gcc-head/include -std=gnu++2a
Exit Code:
1
Author
anonymous
almost 7 years ago
C++
gcc HEAD 8.0.1 20180415 (experimental)
Author
anonymous
almost 7 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.67.0/gcc-head/include -std=gnu++2a
prog.cc:3:16: error: '::main' must return 'int'
void main(int x) {
^
prog.cc:3:6: warning: 'int main(int)' takes only zero or two arguments [-Wmain]
void main(int x) {
^~~~
prog.cc: In function 'int main(int)':
prog.cc:3:15: warning: unused parameter 'x' [-Wunused-parameter]
void main(int x) {
~~~~^