mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update expectation in tests for inline assembly with name clashes
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
contract C {
|
||||
function f() public pure returns (uint r) {
|
||||
assembly { function f() -> x { x := 1 } r := f() }
|
||||
}
|
||||
function g() public pure returns (uint r) {
|
||||
assembly { function f() -> x { x := 2 } r := f() }
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// DeclarationError 3859: (80-108): This declaration shadows a declaration outside the inline assembly block.
|
||||
// DeclarationError 3859: (193-221): This declaration shadows a declaration outside the inline assembly block.
|
||||
@@ -0,0 +1,24 @@
|
||||
contract C {
|
||||
uint y;
|
||||
|
||||
modifier m() {
|
||||
uint t;
|
||||
assembly {
|
||||
function f() -> x { x := 8 }
|
||||
t := f()
|
||||
}
|
||||
y = t;
|
||||
_;
|
||||
}
|
||||
|
||||
function f() m m public returns (uint r) {
|
||||
assembly { function f() -> x { x := 1 } r := f() }
|
||||
}
|
||||
function g() m m public returns (uint r) {
|
||||
assembly { function f() -> x { x := 2 } r := f() }
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// DeclarationError 3859: (92-120): This declaration shadows a declaration outside the inline assembly block.
|
||||
// DeclarationError 3859: (251-279): This declaration shadows a declaration outside the inline assembly block.
|
||||
// DeclarationError 3859: (363-391): This declaration shadows a declaration outside the inline assembly block.
|
||||
Reference in New Issue
Block a user