[Sol->Yul] Changing yul unimplemented test as delete bytes is implemented now.

This commit is contained in:
Djordje Mijovic
2020-10-15 22:05:40 +02:00
parent 4a66723ff9
commit 5f0b8dd716
3 changed files with 10 additions and 6 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
Error (1834): Unimplemented feature error: Byte Arrays not yet implemented! in FILENAME REMOVED
--> yul_unimplemented/input.sol:6:9:
Error (1834): Unimplemented feature error: Copying from storage to storage is not yet implemented. in FILENAME REMOVED
--> yul_unimplemented/input.sol:7:9:
|
6 | delete a;
| ^^^^^^^^
7 | a = b;
| ^^^^^
@@ -2,7 +2,8 @@
pragma solidity >=0.0;
contract test {
bytes a;
bytes b;
function f() public {
delete a;
a = b;
}
}