aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/darwin-minversion-3.c
blob: d0c5934b449ece562d4fb3dbbe427169cb57ee52 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test that most-minor versions greater than 9 work.  */
/* { dg-options "-mmacosx-version-min=10.4.10" } */
/* { dg-do compile { target *-*-darwin* } } */

int main(void)
{
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1040
  fail me;
#endif
  return 0;
}