aboutsummaryrefslogtreecommitdiffstats
path: root/test/clightgen/issue319.c
blob: be9f3f7e61592218260e4dc6a9398c6cef56f744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Dollar signs in identifiers */

int c$d = 42;

int a$b(int x$$) {
  return c$d + x$$;
}

int main(int argc, const char *argv[])
{
  return a$b(6);
}