aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/188_string_index.sol
blob: 9d51e06b32dc62e26063d7285023f2dd1c1f6cab (plain) (blame)
1
2
3
4
5
6
contract C {
    string s;
    function f() public { bytes1 a = s[2]; }
}
// ----
// TypeError: (64-68): Index access for string is not possible.