solidity/test/libsolidity/syntaxTests/inlineAssembly/leave.sol
2021-08-17 12:12:56 +02:00

11 lines
120 B
Solidity

contract C {
function f() public pure {
assembly {
function g() {
leave
}
}
}
}
// ----