solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/222_struct_named_constructor.sol

10 lines
257 B
Solidity

contract C {
struct S { uint a; bool x; }
function f() public {
S memory s = S({a: 1, x: true});
}
}
// ----
// Warning 2072: (80-90): Unused local variable.
// Warning 2018: (50-118): Function state mutability can be restricted to pure