Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rodiazet committed Jan 22, 2025
1 parent 0453b54 commit ae17ec3
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/libyul/yulSyntaxTests/eof/datacopy_shadowing.yul
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
function datacopy(a, b, c) {}
}
// ====
// bytecodeFormat: >=EOFv1
// ----
// DeclarationError 5017: (6-35): The identifier "datacopy" is reserved and can not be used.
7 changes: 7 additions & 0 deletions test/libyul/yulSyntaxTests/eof/dataoffset_shadowing.yul
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
function dataoffset(a) -> b {}
}
// ====
// bytecodeFormat: >=EOFv1
// ----
// DeclarationError 5017: (6-36): The identifier "dataoffset" is reserved and can not be used.
7 changes: 7 additions & 0 deletions test/libyul/yulSyntaxTests/eof/datasize_shadowing.yul
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
function datasize(a) -> b {}
}
// ====
// bytecodeFormat: >=EOFv1
// ----
// DeclarationError 5017: (6-34): The identifier "datasize" is reserved and can not be used.
8 changes: 8 additions & 0 deletions test/libyul/yulSyntaxTests/eof/loadimmutable_shadowing.yul
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
function loadimmutable(a) {}
}
// ====
// bytecodeFormat: >=EOFv1
// dialect: evm
// ----
// DeclarationError 5017: (6-34): The identifier "loadimmutable" is reserved and can not be used.
8 changes: 8 additions & 0 deletions test/libyul/yulSyntaxTests/eof/setimmutable_shadowing.yul
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
function setimmutable(a, b) {}
}
// ====
// bytecodeFormat: >=EOFv1
// dialect: evm
// ----
// DeclarationError 5017: (6-36): The identifier "setimmutable" is reserved and can not be used.

0 comments on commit ae17ec3

Please sign in to comment.