From 545013898e794c4623351628ed3f8e5e161a0b47 Mon Sep 17 00:00:00 2001 From: wechman Date: Tue, 12 Jul 2022 12:26:50 +0200 Subject: [PATCH] Remove duplicated test --- ...multiple_custom_operators_same_contract.sol | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 test/libsolidity/semanticTests/operators/custom/multiple_custom_operators_same_contract.sol diff --git a/test/libsolidity/semanticTests/operators/custom/multiple_custom_operators_same_contract.sol b/test/libsolidity/semanticTests/operators/custom/multiple_custom_operators_same_contract.sol deleted file mode 100644 index 27b1279fe..000000000 --- a/test/libsolidity/semanticTests/operators/custom/multiple_custom_operators_same_contract.sol +++ /dev/null @@ -1,18 +0,0 @@ -// TODO: Isn't it suppose to be the exact same as all_operators.sol ? - -type MyInt is int; -using {add as +} for MyInt; - -function add(MyInt, MyInt) pure returns (MyInt) { - return MyInt.wrap(0); -} - -contract C { - function f() public pure returns (MyInt t) { - t = MyInt.wrap(2) + MyInt.wrap(7); - } -} -// ==== -// compileViaYul: also -// ---- -// f() -> 0