mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
585 B
Solidity
26 lines
585 B
Solidity
contract C {
|
|
function f() public returns (uint) {
|
|
return 1;
|
|
}
|
|
function g(uint x, uint y) public returns (uint) {
|
|
return x - y;
|
|
}
|
|
function h() public payable returns (uint) {
|
|
return f();
|
|
}
|
|
function x(bytes32 b) public returns (bytes32) {
|
|
return b;
|
|
}
|
|
function t(bool b) public returns (bool) {
|
|
return !b;
|
|
}
|
|
}
|
|
// ----
|
|
// f() -> 1
|
|
// g(uint256,uint256): 1, -2 -> 3
|
|
// h(), 1 ether -> 1
|
|
// j() -> FAILURE
|
|
// i() # Does not exist. # -> FAILURE # Reverts. #
|
|
// x(bytes32): 0x31 -> 0x31
|
|
// t(bool): true -> false
|