mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
204 B
Solidity
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
|