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.
|
|
|
|
// Warning: (146-163): Assertion checker does not yet implement this expression.
|
|
|
|
// Warning: (146-163): Internal error: Expression undefined for SMT solver.
|
|
|
|
// Warning: (146-163): Assertion checker does not yet implement this type.
|