solidity/test/libsolidity/syntaxTests/memberLookup/unused_module_member_reference.sol
2022-04-01 23:41:18 -05:00

16 lines
239 B
Solidity

==== Source: s1.sol ====
import "s1.sol" as A;
library L {
function f() internal pure {}
}
contract C
{
function test() public pure {
A.L;
}
}
// ----
// Warning 6133: (s1.sol:127-130='A.L'): Statement has no effect.