summaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-02-18-64bitConstant.c
blob: 3c3a6034864e24c916a7e147a3bc2e522f3fa01a (plain)
1
2
3
4
5
6
7
/* GCC wasn't handling 64 bit constants right fixed */

void main() {
	long long Var = 123455678902ll;
	printf("%lld\n", Var);

}