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