1 int foo(void);
2 
foo(void)3 int foo(void) {
4   /* This is built with -Werror, it would error if warning_level=3 was inherited
5    * from main project and not overridden by this subproject's default_options. */
6   int x;
7   return 0;
8 }
9