mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
180 B
Solidity
15 lines
180 B
Solidity
|
contract C {
|
||
|
struct S {
|
||
|
uint256 a;
|
||
|
bool x;
|
||
|
}
|
||
|
S public s;
|
||
|
|
||
|
constructor() public {
|
||
|
s = S({a: 1, x: true});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ----
|
||
|
// s() -> 1, true
|