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

7 lines
167 B
Solidity

==== Source: a ====
contract C { D d; }
==== Source: b ====
import "a"; contract D is C {}
// ----
// DeclarationError: (a:13-14): Identifier not found or not unique.