[SMTChecker] Fix require with message

This commit is contained in:
Leonardo Alt
2019-07-01 16:17:06 +02:00
parent 22776cddcd
commit 75663dc91e
3 changed files with 15 additions and 6 deletions
@@ -0,0 +1,9 @@
pragma experimental SMTChecker;
contract C {
function f(uint a) public pure {
require(a < 10, "Input number is too large.");
assert(a < 20);
}
}
// ----
// Warning: (97-125): Assertion checker does not yet support the type of this literal (literal_string "Input number is too large.").