solidity/test/libsolidity/semanticTests/structs/simple_struct_allocation.sol
2023-05-11 10:56:55 -05:00

13 lines
149 B
Solidity

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