solidity/test/libsolidity/syntaxTests/imports/import_does_not_clutter_importee.sol

7 lines
172 B
Solidity
Raw Normal View History

2019-08-16 13:12:26 +00:00
==== Source: a ====
contract C { D d; }
==== Source: b ====
import "a"; contract D is C {}
// ----
// DeclarationError 7920: (a:13-14): Identifier not found or not unique.