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
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2018-11-14 16:08:53 +00:00
|
|
|
// Warning: (133-143): Unused local variable.
|
|
|
|
// Warning: (133-143): Assertion checker does not yet support the type of this variable.
|
2019-11-15 13:48:11 +00:00
|
|
|
// Warning: (146-147): Assertion checker does not yet implement type type(struct C.A storage pointer)
|
2019-07-01 14:25:33 +00:00
|
|
|
// Warning: (146-163): Assertion checker does not yet implement type struct C.A memory
|
2019-05-14 21:10:56 +00:00
|
|
|
// Warning: (146-163): Assertion checker does not yet implement this expression.
|