You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pragma solidity ^0.5.0;
contract test {
function g() public returns (uint) {
return block.timestamp;
}
}
-----------------
test::[implicit_constructor]: OK
test::g: SKIPPED
Use --show-warnings to see 2 warnings.
Some functions were skipped. Use --verbose to see details.
No errors found.
and
pragma solidity ^0.5.0;
contract test {
function g() public returns (uint) {
return block.difficulty;
}
}
-----------------
test::[implicit_constructor]: OK
test::g: SKIPPED
Use --show-warnings to see 2 warnings.
Some functions were skipped. Use --verbose to see details.
No errors found.
The text was updated successfully, but these errors were encountered:
and
The text was updated successfully, but these errors were encountered: