1 /* Test the tester; previously gcc.misc-tests/dg-5.c.  */
2 /* { dg-prms-id 42 } */
3 /* { dg-do run } */
4 /* The \n is left out of the pattern because tcl's exec will remove it.  */
5 /* { dg-output {Hello world[.]} } */
6 
7 #include <stdio.h>
8 
main()9 main () { printf ("Hello world.\n"); return 0; }
10