mirror of
https://github.com/filecoin-project/lotus.git
synced 2025-05-21 00:58:27 +08:00
14 lines
243 B
Solidity
14 lines
243 B
Solidity
|
|
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.17;
|
|
|
|
contract StackRecCallExp {
|
|
function exec1(uint256 r) public payable {
|
|
if(r > 0) {
|
|
StackRecCallExp(address(this)).exec1(r-1);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|