blob: 8e06322cebfaac3159e5eac1b21bc87009b3edde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
contract C {
function f() internal returns (uint, uint, uint, uint) {
(uint a, uint b,,) = f();
a; b;
}
function g() internal returns (bytes memory, string storage) {
(bytes memory a, string storage b) = g();
a; b;
}
}
// ----
// Warning: (163-169): This variable is of storage pointer type and might be returned without assignment. This can cause storage corruption. Assign the variable (potentially from itself) to remove this warning.
|