diff options
Diffstat (limited to 'test/libsolidity/smtCheckerTests/loops/for_loop_3.sol')
-rw-r--r-- | test/libsolidity/smtCheckerTests/loops/for_loop_3.sol | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/libsolidity/smtCheckerTests/loops/for_loop_3.sol b/test/libsolidity/smtCheckerTests/loops/for_loop_3.sol new file mode 100644 index 00000000..8bf9bdc7 --- /dev/null +++ b/test/libsolidity/smtCheckerTests/loops/for_loop_3.sol @@ -0,0 +1,8 @@ +pragma experimental SMTChecker; +contract C { + function f(uint x) public pure { + for (uint y = 2; x < 10; ) { + assert(y == 2); + } + } +} |