solidity/test/libsolidity/ASTJSON/assembly/var_access.sol
2019-11-13 12:13:22 +01:00

9 lines
105 B
Solidity

contract C {
function f() pure public {
uint x;
assembly { x := 7 }
}
}
// ----