summaryrefslogtreecommitdiffstats
path: root/Tests/GeneratorExpression/echo.c
blob: 41596a21d9e185fe16269ae8c93aceea8f3ad174 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char* argv[])
{
#ifndef SRC_GENEX_WORKS
#error SRC_GENEX_WORKS not defined
#endif
  printf("%s\n", argv[1]);
  return EXIT_SUCCESS;
}