[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 -1
View File
@@ -2123,7 +2123,10 @@ string YulUtilFunctions::updateStorageValueFunction(
fromReferenceType->location(),
fromReferenceType->isPointer()
).get() == *fromReferenceType, "");
solUnimplementedAssert(fromReferenceType->location() != DataLocation::Storage, "");
solUnimplementedAssert(
fromReferenceType->location() != DataLocation::Storage,
"Copying from storage to storage is not yet implemented."
);
solAssert(toReferenceType->category() == fromReferenceType->category(), "");
if (_toType.category() == Type::Category::Array)