mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
194 B
Solidity
12 lines
194 B
Solidity
contract A {
|
|
uint public data;
|
|
}
|
|
|
|
contract C {
|
|
A a = new A();
|
|
|
|
using {a.data} for uint;
|
|
}
|
|
// ----
|
|
// DeclarationError 9589: (82-88): Identifier is not a function name or not unique.
|