mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
182 B
Solidity
8 lines
182 B
Solidity
==== Source: a ====
|
|
uint constant c = 7;
|
|
==== Source: b ====
|
|
import {c as d} from "a";
|
|
uint constant d = 7;
|
|
// ----
|
|
// DeclarationError 2333: (b:26-45): Identifier already declared.
|