2019-02-06 11:10:48 +00:00
|
|
|
contract C {
|
2019-05-15 10:01:14 +00:00
|
|
|
uint public state = 0;
|
|
|
|
constructor(uint _state) public {
|
|
|
|
state = _state;
|
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function f() payable public returns (uint) {
|
2019-02-28 13:16:16 +00:00
|
|
|
return 2;
|
2019-02-06 11:10:48 +00:00
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function g() public returns (uint, uint) {
|
|
|
|
return (2, 3);
|
2019-02-06 11:10:48 +00:00
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function h(uint x, uint y) public returns (uint) {
|
|
|
|
return x - y;
|
2019-02-21 00:13:14 +00:00
|
|
|
}
|
2019-02-28 13:16:16 +00:00
|
|
|
function j(bool b) public returns (bool) {
|
2019-02-21 22:25:12 +00:00
|
|
|
return !b;
|
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function k(bytes32 b) public returns (bytes32, bytes32) {
|
|
|
|
return (b, b);
|
2019-02-28 13:16:16 +00:00
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function l() public returns (uint256) {
|
2019-02-25 17:10:09 +00:00
|
|
|
return msg.data.length;
|
|
|
|
}
|
2019-04-11 18:25:20 +00:00
|
|
|
function m(bytes memory b) public returns (bytes memory) {
|
|
|
|
return b;
|
|
|
|
}
|
2019-05-06 08:08:10 +00:00
|
|
|
function n() public returns (string memory) {
|
|
|
|
return "any";
|
|
|
|
}
|
|
|
|
function o() public returns (string memory, string memory) {
|
|
|
|
return ("any", "any");
|
|
|
|
}
|
|
|
|
function p() public returns (string memory, uint, string memory) {
|
|
|
|
return ("any", 42, "any");
|
|
|
|
}
|
2019-02-06 11:10:48 +00:00
|
|
|
}
|
|
|
|
// ----
|
2019-05-15 10:01:14 +00:00
|
|
|
// constructor(): 3 ->
|
|
|
|
// state() -> 3
|
2019-04-11 18:25:20 +00:00
|
|
|
// _() -> FAILURE
|
2019-02-28 13:16:16 +00:00
|
|
|
// f() -> 2
|
2019-04-11 18:25:20 +00:00
|
|
|
// f(), 1 ether -> 2
|
|
|
|
// g() -> 2, 3
|
|
|
|
// h(uint256,uint256): 1, -2 -> 3
|
2019-02-28 13:16:16 +00:00
|
|
|
// j(bool): true -> false
|
2019-04-11 18:25:20 +00:00
|
|
|
// k(bytes32): 0x10 -> 0x10, 0x10
|
|
|
|
// l(): hex"4200ef" -> 7
|
|
|
|
// m(bytes): 32, 32, 0x20 -> 32, 32, 0x20
|
|
|
|
// m(bytes): 32, 3, hex"AB33BB" -> 32, 3, left(0xAB33BB)
|
|
|
|
// m(bytes): 32, 3, hex"AB33FF" -> 32, 3, hex"ab33ff0000000000000000000000000000000000000000000000000000000000"
|
2019-05-06 08:08:10 +00:00
|
|
|
// n() -> 0x20, 3, "any"
|
|
|
|
// o() -> 0x40, 0x80, 3, "any", 3, "any"
|
|
|
|
// p() -> 0x60, 0x2a, 0xa0, 3, "any", 3, "any"
|