Ejemplo n.º 1
0
int main() {
  int x = 8;
  anotherFunc(x, y);
  printf("hello");
}
Ejemplo n.º 2
0
Archivo: main.cpp Proyecto: CCJY/coliru
int main() {
    A a;
    anotherFunc(a);
    B b;
    anotherFunc(b);
}