blob: 2a46d0c3e828b629e13c34274f3afa7a3a50ccde (
plain) (
blame)
1
2
3
4
5
6
7
8
|
contract C {
string data;
function test() public {
data.pop();
}
}
// ----
// TypeError: (65-73): Member "pop" not found or not visible after argument-dependent lookup in string storage ref
|