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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 7737: (97-121): Assertion checker does not support inline assembly.
|