mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
44 lines
2.5 KiB
Solidity
44 lines
2.5 KiB
Solidity
|
pragma solidity >=0.0;
|
||
|
|
||
|
contract Large {
|
||
|
uint public a;
|
||
|
uint[] public b;
|
||
|
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
||
|
function f2(uint x) public returns (uint) { b[uint8(msg.data[1])] = x; }
|
||
|
function f3(uint x) public returns (uint) { b[uint8(msg.data[2])] = x; }
|
||
|
function f4(uint x) public returns (uint) { b[uint8(msg.data[3])] = x; }
|
||
|
function f5(uint x) public returns (uint) { b[uint8(msg.data[4])] = x; }
|
||
|
function f6(uint x) public returns (uint) { b[uint8(msg.data[5])] = x; }
|
||
|
function f7(uint x) public returns (uint) { b[uint8(msg.data[6])] = x; }
|
||
|
function f8(uint x) public returns (uint) { b[uint8(msg.data[7])] = x; }
|
||
|
function f9(uint x) public returns (uint) { b[uint8(msg.data[8])] = x; }
|
||
|
function f0(uint x) public pure returns (uint) { require(x > 10); }
|
||
|
function g1(uint x) public payable returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
||
|
function g2(uint x) public payable returns (uint) { b[uint8(msg.data[1])] = x; }
|
||
|
function g3(uint x) public payable returns (uint) { b[uint8(msg.data[2])] = x; }
|
||
|
function g4(uint x) public payable returns (uint) { b[uint8(msg.data[3])] = x; }
|
||
|
function g5(uint x) public payable returns (uint) { b[uint8(msg.data[4])] = x; }
|
||
|
function g6(uint x) public payable returns (uint) { b[uint8(msg.data[5])] = x; }
|
||
|
function g7(uint x) public payable returns (uint) { b[uint8(msg.data[6])] = x; }
|
||
|
function g8(uint x) public payable returns (uint) { b[uint8(msg.data[7])] = x; }
|
||
|
function g9(uint x) public payable returns (uint) { b[uint8(msg.data[8])] = x; }
|
||
|
function g0(uint x) public payable returns (uint) { require(x > 10); }
|
||
|
}
|
||
|
contract Medium {
|
||
|
uint public a;
|
||
|
uint[] public b;
|
||
|
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
||
|
function f2(uint x) public returns (uint) { b[uint8(msg.data[1])] = x; }
|
||
|
function f3(uint x) public returns (uint) { b[uint8(msg.data[2])] = x; }
|
||
|
function g7(uint x) public payable returns (uint) { b[uint8(msg.data[6])] = x; }
|
||
|
function g8(uint x) public payable returns (uint) { b[uint8(msg.data[7])] = x; }
|
||
|
function g9(uint x) public payable returns (uint) { b[uint8(msg.data[8])] = x; }
|
||
|
function g0(uint x) public payable returns (uint) { require(x > 10); }
|
||
|
}
|
||
|
contract Small {
|
||
|
uint public a;
|
||
|
uint[] public b;
|
||
|
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
||
|
function () external payable {}
|
||
|
}
|