solidity/test/libsolidity/syntaxTests/imports/shadowing_builtins_with_imports.sol
2019-08-19 14:45:26 +02:00

9 lines
176 B
Solidity

==== Source: B.sol ====
contract X {}
==== Source: b ====
import * as msg from "B.sol";
contract C {
}
// ----
// Warning: (b:0-29): This declaration shadows a builtin symbol.