2019-03-19 19:45:20 +00:00
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f() internal returns (uint x) {
|
|
|
|
assembly {
|
|
|
|
x := callvalue()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function g() public returns (uint) {
|
|
|
|
return f();
|
|
|
|
}
|
|
|
|
}
|
2019-05-22 09:30:29 +00:00
|
|
|
// ----
|
|
|
|
// Warning: (17-121): Function state mutability can be restricted to view
|