1/* Test that most-minor versions greater than 9 work.  */
2/* { dg-options "-mmacosx-version-min=10.4.10" } */
3/* { dg-do compile { target *-*-darwin* } } */
4
5int
6main ()
7{
8#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1040
9  fail me;
10#endif
11  return 0;
12}
13