solidity/test/libsolidity/syntaxTests/inlineAssembly/shadowing/qualified_names.sol

15 lines
475 B
Solidity
Raw Normal View History

contract D {
uint constant a;
}
contract C {
function f() public pure {
assembly {
let D.a := 1
let D.b := 1 // shadowing the prefix only is also an error
}
}
}
// ----
// DeclarationError: (115-118): The prefix of this declaration conflicts with a declaration outside the inline assembly block.
// DeclarationError: (140-143): The prefix of this declaration conflicts with a declaration outside the inline assembly block.