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 {
|
|
uint a;
|
|
}
|
|
|
|
function f() external returns (uint) {
|
|
S memory s = S(1);
|
|
return s.a;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 1
|