solidity/test/libsolidity/semanticTests/smoke_test.sol
2019-02-21 23:28:48 +01:00

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