summaryrefslogtreecommitdiff
path: root/tests/genie/preparser.gs
blob: ab4d401202c79a5bf104cde9527395461a0b3332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
init
	result:string = ""
#if VALA_0_16
	result = "0.16+"
#else
	result = "<0.16"
#endif

	assert( result != "" )

#if VALA_0_16
	assert( result == "0.16+" )
#else
	assert( result == "<0.16" )
#endif