summaryrefslogtreecommitdiffstats
path: root/Tests/TryCompile/stdout_and_stderr.c
blob: 84ded1f79981dbeb00ee28d5b0c1d8d004d05ba0 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
  fputs("error\n", stderr);
  puts("hello world\n");
  return 0;
}