Update expectation in tests for inline assembly with name clashes

This commit is contained in:
Kamil Śliwak
2021-10-27 20:16:32 +02:00
parent 8c6e5e501b
commit 910ea59ace
7 changed files with 35 additions and 205 deletions
@@ -1,13 +0,0 @@
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() }
}
}
// ====
// compileViaYul: also
// ----
// f() -> 1
// g() -> 2