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

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