solidity/test/libsolidity/syntaxTests/viewPureChecker/callvalue_nonpayable_assembly_function.sol

11 lines
193 B
Solidity
Raw Normal View History

contract C
{
function f(uint x) public {
assembly {
x := callvalue()
}
}
}
// ----
// Warning: (17-108): Function state mutability can be restricted to view