mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
143 B
Solidity
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.
|