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

7 lines
163 B
Solidity

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