summaryrefslogtreecommitdiff
path: root/Test/test0/LargeLiterals0.bpl
blob: af9c02b44a39726f762445dfa18b103d4df5e44a (plain)
1
2
3
4
5
6
7
8
9
// RUN: %boogie -noVerify "%s" > "%t"
// RUN: %diff NoErrors.expect "%t"
// Test to parse large integer literals

axiom 1234567890987654321 == 1234567890987654321;

function f(int) returns (int);

axiom f(1234567890987654321) == 0;