blob: 9462ef442fecdc60a5492d77ecbe52d5f75e4f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-macos12 -verify %s
// expected-no-diagnostics
#if !__is_target_environment(unknown)
#error "mismatching environment"
#endif
#if __is_target_environment(simulator) || __is_target_environment(SIMULATOR)
#error "mismatching environment"
#endif
#if __is_target_environment(invalidEnv)
#error "invalid environment must not be matched"
#endif
|