Language
C++
Compiler
clang 9.0.0
Options
Warnings
Boost 1.72.0
C++2a(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/clang-9.0.0/include -std=gnu++2a
Exit Code:
1
Author
anonymous
about 5 years ago
C++
clang 9.0.0
Author
anonymous
about 5 years ago
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/clang-9.0.0/include -std=gnu++2a
prog.cc:8:21: error: redefinition of 'bazz'
extern "C" void bazz(int){}
^
prog.cc:3:21: note: previous definition is here
extern "C" void bazz(int){}
^
1 error generated.