test.c 73 B

12345678
  1. void test(void) {
  2. }
  3. int main() {
  4. void (*f)(void) = test;
  5. return 0;
  6. }