blob: 2db941414cc376eb4b398d396e9b6bafbb47bf87 (
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;
|