mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update tests.
This commit is contained in:
+1
@@ -2,3 +2,4 @@ contract test {
|
||||
function f(bytes calldata) external;
|
||||
}
|
||||
// ----
|
||||
// TypeError: (0-58): Contract "test" should be marked as abstract.
|
||||
|
||||
+1
@@ -2,3 +2,4 @@ contract test {
|
||||
function f(bytes memory) internal;
|
||||
}
|
||||
// ----
|
||||
// TypeError: (0-56): Contract "test" should be marked as abstract.
|
||||
|
||||
+1
@@ -2,3 +2,4 @@ contract test {
|
||||
function f(bytes storage) internal;
|
||||
}
|
||||
// ----
|
||||
// TypeError: (0-57): Contract "test" should be marked as abstract.
|
||||
|
||||
+1
@@ -2,3 +2,4 @@ contract test {
|
||||
function f(bytes memory) public;
|
||||
}
|
||||
// ----
|
||||
// TypeError: (0-54): Contract "test" should be marked as abstract.
|
||||
|
||||
Reference in New Issue
Block a user