solidity/test/libsolidity/semanticTests/structs/simple_struct_allocation.sol

15 lines
180 B
Solidity
Raw Normal View History

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