solidity/test/libsolidity/semanticTests/structs/simple_struct_allocation.sol
2020-07-02 16:37:20 +02:00

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