solidity/test/libsolidity/ASTJSON/assembly/nested_functions.sol
2022-03-14 14:21:06 +01:00

13 lines
164 B
Solidity

contract C {
function f() public pure returns (uint x) {
assembly {
function f1() {
function f2() { }
}
x := 2
}
}
}
// ----