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

7 lines
158 B
Solidity

==== Source: a ====
contract A {}
==== Source: b ====
import {A} from "a"; contract A {}
// ----
// DeclarationError: (b:21-34): Identifier already declared.