solidity/test/libsolidity/semanticTests/various/literal_empty_string.sol

21 lines
269 B
Solidity
Raw Normal View History

contract C {
bytes32 public x;
uint256 public a;
function f(bytes32 _x, uint256 _a) public {
x = _x;
a = _a;
}
function g() public {
this.f("", 2);
}
}
// ----
// x() -> 0
// a() -> 0
// g() ->
// x() -> 0
// a() -> 2