mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
180 B
Solidity
9 lines
180 B
Solidity
==== Source: a ====
|
|
import "b";
|
|
uint constant c = 7;
|
|
==== Source: b ====
|
|
import "a";
|
|
uint constant c = 7;
|
|
// ----
|
|
// DeclarationError 2333: (b:12-31): Identifier already declared.
|