summaryrefslogtreecommitdiff
path: root/tests/basic-types/bug643612.vala
blob: fca9d75adaa783af8184ee44a9cdacdf6991e4d3 (plain)
1
2
3
4
5
6
7
8
void main() {
	int8 test1 = -128;
	int8 test2 = +127;

	/* 64-bit integer literals */
	assert(0x80000000 == 0x80000000ll);
	assert(-0x80000001 == -0x80000001ll);
}