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

9 lines
105 B
Solidity

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