label-scope.c 90 B

12345678910
  1. static int f(int n)
  2. {
  3. __label__ n;
  4. n: return n;
  5. }
  6. /*
  7. * check-name: __label__ scope
  8. */