Language
Compiler
Options
$
Func called with A::AA and got A::BA
Func called with A::AB and got A::BB
Func called with A::AC and got A::BC
Exit Code:
0
Author
anonymous
over 7 years ago
Author
anonymous
over 7 years ago
$
prog.cc: In instantiation of 'void A::Func(AType) [with AType = A::AA]':
prog.cc:44:12: required from here
prog.cc:30:19: warning: unused parameter 'a' [-Wunused-parameter]
void Func(AType a)
~~~~~~^
prog.cc: In instantiation of 'void A::Func(AType) [with AType = A::AB]':
prog.cc:45:12: required from here
prog.cc:30:19: warning: unused parameter 'a' [-Wunused-parameter]
prog.cc: In instantiation of 'void A::Func(AType) [with AType = A::AC]':
prog.cc:46:12: required from here
prog.cc:30:19: warning: unused parameter 'a' [-Wunused-parameter]
Func called with A::AA and got A::BA
Func called with A::AB and got A::BB
Func called with A::AC and got A::BC