solidity/test/libsolidity/ASTJSON/assembly/var_access.sol
2023-05-11 10:56:55 -05:00

8 lines
104 B
Solidity

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