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