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

16 lines
276 B
Solidity

contract C {
/// test
uint a;
function f() public pure returns (uint x) {
/// test2
for (uint i = 0; i < 20; i++) {
/// tee
/// s "t" 3
x *= 2;
}
/** tes "t4" */
return x;
}
}
// ----