mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
25 lines
449 B
Solidity
25 lines
449 B
Solidity
contract C {
|
|
struct S {
|
|
string s;
|
|
bytes b;
|
|
}
|
|
|
|
S public m;
|
|
|
|
constructor() {
|
|
m.s = "foo";
|
|
m.b = "bar";
|
|
}
|
|
|
|
function f() public view {
|
|
(string memory s, bytes memory b) = this.m();
|
|
assert(keccak256(bytes(s)) == keccak256(bytes(m.s))); // should hold
|
|
assert(b[0] == m.b[0]); // should hold
|
|
assert(b[0] == "t"); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (307-326): CHC: Assertion violation happens here.
|