solidity/test/libsolidity/syntaxTests/memberLookup/memory_structs_with_mappings.sol

11 lines
236 B
Solidity
Raw Normal View History

2018-04-18 18:40:08 +00:00
contract Test {
struct S { uint8 a; mapping(uint => uint) b; uint8 c; }
S s;
function f() public {
S memory x;
x.b[1];
}
}
// ----
// TypeError: (118-121): Member "b" is not available in struct Test.S memory outside of storage.