blob: d7faa4b06fe7f067f0957b83b60e5a7ef82f3c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %boogie -proverWarnings:1 "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
procedure foo(x : real) returns (r : float8e24)
{
r := 15; // Error
r := 15.0; // Error
r := 0e1f22e8; // Error
r := 1e0f23e8; // Error
r := x; // Error
r := 1e0f23e8 + 1e0f23e8; // Error
r := 1e0f24e8 + 1e0f23e8; // Error
return;
}
|