summaryrefslogtreecommitdiffstats
path: root/Tests/GeneratorExpression/CMP0044/cmp0044-check.cpp
blob: 2356bc488f79768a97eae7d4574df80fe9252747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#ifdef Type_Is_
#  if !Result
#    error Result should be 1 in WARN mode
#  endif
#endif

#ifdef Type_Is_NEW
#  if Result
#    error Result should be 0 in NEW mode
#  endif
#endif

#ifdef Type_Is_OLD
#  if !Result
#    error Result should be 1 in OLD mode
#  endif
#endif

#if !defined(Type_Is_) && !defined(Type_Is_OLD) && !defined(Type_Is_NEW)
#error No expected definition present
#endif

void foo(void)
{
}