* Clean some unused variables * Add basic infrastructure * Add real eth regression tests * Use check_call * Suppress stdout * Make 705 work * Less error prone way of testing
8 lines
100 B
Solidity
8 lines
100 B
Solidity
contract C {
|
|
function() {
|
|
if (msg.data[0] == 1) {
|
|
return;
|
|
}
|
|
}
|
|
}
|