Language
C++
Compiler
gcc 8.2.0
Options
Warnings
Boost 1.72.0
C++2a(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-8.2.0/include -std=gnu++2a
Exit Code:
1
Author
anonymous
almost 5 years ago
C++
gcc 8.2.0
Author
anonymous
almost 5 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-8.2.0/include -std=gnu++2a
prog.cc: In function 'int main()':
prog.cc:22:7: error: request for member 'Func' is ambiguous
d.Func(10.0);
^~~~
prog.cc:10:10: note: candidates are: 'void BaseDouble::Func(double)'
void Func(double) { std::cout << "BaseDouble...\n"; }
^~~~
prog.cc:5:10: note: 'void BaseInt::Func(int)'
void Func(int) { std::cout << "BaseInt...\n"; }
^~~~