solidity/test/libsolidity/semanticTests/structs/struct_named_constructor.sol
2020-07-07 12:16:18 +02:00

15 lines
173 B
Solidity

contract C {
struct S {
uint256 a;
bool x;
}
S public s;
constructor() {
s = S({a: 1, x: true});
}
}
// ----
// s() -> 1, true