summaryrefslogtreecommitdiff
path: root/tests/parser/preprocessor-vala.vala
blob: 425b08bbd84f7e8eb75cadde64495a21949cdf0c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
void main () {
#if !VALA_0_2
	assert_not_reached ();
#elif !VALA_0_4
	assert_not_reached ();
#elif !VALA_0_6
	assert_not_reached ();
#elif !VALA_0_8
	assert_not_reached ();
#elif !VALA_0_10
	assert_not_reached ();
#elif !VALA_0_12
	assert_not_reached ();
#elif !VALA_0_14
	assert_not_reached ();
#elif !VALA_0_16
	assert_not_reached ();
#elif !VALA_0_18
	assert_not_reached ();
#elif !VALA_0_20
	assert_not_reached ();
#elif !VALA_0_22
	assert_not_reached ();
#elif !VALA_0_24
	assert_not_reached ();
#elif !VALA_0_26
	assert_not_reached ();
#elif !VALA_0_28
	assert_not_reached ();
#elif !VALA_0_30
	assert_not_reached ();
#elif !VALA_0_32
	assert_not_reached ();
#elif !VALA_0_34
	assert_not_reached ();
#elif !VALA_0_36
	assert_not_reached ();
#elif !VALA_0_38
	assert_not_reached ();
#elif !VALA_0_40
	assert_not_reached ();
#elif !VALA_0_42
	assert_not_reached ();
#elif !VALA_0_44
	assert_not_reached ();
#elif !VALA_0_46
	assert_not_reached ();
#elif !VALA_0_48
	assert_not_reached ();
#elif !VALA_0_50
	assert_not_reached ();
#elif !VALA_0_52
	assert_not_reached ();
#elif !VALA_0_54
	assert_not_reached ();
#elif !VALA_0_56
	assert_not_reached ();
#elif !VALA_0_58
	assert_not_reached ();
#else
	assert (true);
#endif
}