solidity/test/libsolidity/semanticTests/structs/simple_struct_allocation.sol
2022-05-19 20:23:28 +02:00

15 lines
181 B
Solidity

contract C {
struct S {
uint a;
}
function f() external returns (uint) {
S memory s = S(1);
return s.a;
}
}
// ====
// compileToEwasm: also
// ----
// f() -> 1