mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
255 B
Solidity
16 lines
255 B
Solidity
contract A {
|
|
uint public x;
|
|
receive () external payable { ++x; }
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// x() -> 0
|
|
// ()
|
|
// x() -> 1
|
|
// (), 1 wei
|
|
// x() -> 2
|
|
// x(), 1 wei -> FAILURE
|
|
// (): hex"00" -> FAILURE
|
|
// (), 1 ether: hex"00" -> FAILURE
|