Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.cp/method2.cc
2023-03-06 14:48:14 +01:00

27 lines
205 B
C++

struct A
{
void method ();
void method (int a);
void method (A* a);
};
void
A::method ()
{
}
void
A::method (int a)
{
}
void
A::method (A* a)
{
}
int
main (int argc, char** argv)
{
return 0;
}