solidity/test/libsolidity/ASTJSON/assembly/var_access.sol

9 lines
105 B
Solidity
Raw Normal View History

2019-10-15 10:38:12 +00:00
contract C {
function f() pure public {
uint x;
assembly { x := 7 }
}
}
// ----