solidity/test/libsolidity/syntaxTests/operators/custom/bind_error.sol
2022-09-28 13:09:16 +02:00

9 lines
143 B
Solidity

type Int is int16;
using {IntError as +} for Int;
error IntError(Int a, Int b);
// ----
// TypeError 8187: (27-35): Expected function name.