This test has been automatized
[oota-llvm.git] / test / CFrontend / 2002-02-18-64bitConstant.c
1 /* GCC wasn't handling 64 bit constants right fixed */
2
3 void main() {
4         long long Var = 123455678902ll;
5         printf("%lld\n", Var);
6
7 }