2019-04-05 14:41:05 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint x) public pure returns (uint) {
|
|
|
|
assembly {
|
|
|
|
x := 2
|
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2019-04-15 12:50:00 +00:00
|
|
|
// Warning: (97-121): Assertion checker does not support inline assembly.
|