#include <stdio.h>
#include <string.h>

void test();

void test2() {
  test();
}

void test(char *msg) {
  printf("test called '%s' (%d)\n", msg, strlen(msg));
}

int main() {
  test2();
}