diff --git a/test/libsolidity/semanticTests/types/struct/type_typehash_EIP712_example.sol b/test/libsolidity/semanticTests/types/struct/type_typehash_EIP712_example.sol index 20bcea7ef..886a1c286 100644 --- a/test/libsolidity/semanticTests/types/struct/type_typehash_EIP712_example.sol +++ b/test/libsolidity/semanticTests/types/struct/type_typehash_EIP712_example.sol @@ -9,7 +9,5 @@ contract C { return type(Mail).typehash == keccak256("Mail(address from,address to,string contents)"); } } -// ==== -// compileToEwasm: also // ---- // f() -> true diff --git a/test/libsolidity/semanticTests/types/struct/type_typehash_different_scopes.sol b/test/libsolidity/semanticTests/types/struct/type_typehash_different_scopes.sol index 5eef3b602..0126eab24 100644 --- a/test/libsolidity/semanticTests/types/struct/type_typehash_different_scopes.sol +++ b/test/libsolidity/semanticTests/types/struct/type_typehash_different_scopes.sol @@ -19,7 +19,5 @@ contract C { return A.a == B.b; } } -// ==== -// compileToEwasm: also // ---- // f() -> true diff --git a/test/libsolidity/semanticTests/types/struct/type_typehash_nested.sol b/test/libsolidity/semanticTests/types/struct/type_typehash_nested.sol index fc77b512a..8de7b6166 100644 --- a/test/libsolidity/semanticTests/types/struct/type_typehash_nested.sol +++ b/test/libsolidity/semanticTests/types/struct/type_typehash_nested.sol @@ -22,7 +22,5 @@ contract C { ); } } -// ==== -// compileToEwasm: also // ---- // f() -> true, true, true diff --git a/test/libsolidity/semanticTests/types/struct/type_typehash_shadow.sol b/test/libsolidity/semanticTests/types/struct/type_typehash_shadow.sol index 5ee8021ea..fe549295f 100644 --- a/test/libsolidity/semanticTests/types/struct/type_typehash_shadow.sol +++ b/test/libsolidity/semanticTests/types/struct/type_typehash_shadow.sol @@ -17,7 +17,5 @@ contract C { ); } } -// ==== -// compileToEwasm: also // ---- // f() -> true, false, true diff --git a/test/libsolidity/semanticTests/types/struct/type_typehash_super.sol b/test/libsolidity/semanticTests/types/struct/type_typehash_super.sol index f3acb8688..b3b504607 100644 --- a/test/libsolidity/semanticTests/types/struct/type_typehash_super.sol +++ b/test/libsolidity/semanticTests/types/struct/type_typehash_super.sol @@ -10,7 +10,5 @@ contract C is A { return type(S).typehash == keccak256("S(string x,bool[10][] y)"); } } -// ==== -// compileToEwasm: also // ---- // f() -> true