solidity/test/libsolidity/semanticTests/structs/struct_named_constructor.sol

17 lines
204 B
Solidity

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