solidity/test/libsolidity/smtCheckerTests/inline_assembly/local_var.sol
2021-08-27 16:25:09 +02:00

14 lines
251 B
Solidity

contract C
{
function f(uint x) public pure returns (uint) {
assembly {
x := 2
}
return x;
}
}
// ====
// SMTEngine: all
// ----
// Warning 7737: (64-88): Inline assembly may cause SMTChecker to produce spurious warnings (false positives).