2018-08-01 21:37:46 +00:00
|
|
|
pragma experimental SMTChecker;
|
2018-11-14 16:08:53 +00:00
|
|
|
|
2018-08-01 21:37:46 +00:00
|
|
|
contract C {
|
|
|
|
struct A { uint a; uint b; }
|
2018-11-14 16:08:53 +00:00
|
|
|
function f() public pure returns (uint) {
|
|
|
|
A memory a = A({ a: 1, b: 2 });
|
2018-08-01 21:37:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 2072: (133-143): Unused local variable.
|
|
|
|
// Warning 8115: (133-143): Assertion checker does not yet support the type of this variable.
|
|
|
|
// Warning 8364: (146-147): Assertion checker does not yet implement type type(struct C.A storage pointer)
|
|
|
|
// Warning 8364: (146-163): Assertion checker does not yet implement type struct C.A memory
|
|
|
|
// Warning 4639: (146-163): Assertion checker does not yet implement this expression.
|