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