blob: 79a68ef1235a9d2123fc1a8c29157241497055ac (
plain) (
blame)
1
2
3
4
5
6
7
8
|
contract C {
uint data;
function test() public {
data.pop();
}
}
// ----
// TypeError: (63-71): Member "pop" not found or not visible after argument-dependent lookup in uint256.
|