mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
202 B
Solidity
11 lines
202 B
Solidity
type Int is int16;
|
|
|
|
using {abi.encode as +} for Int;
|
|
|
|
function f(Int, Int) pure returns (Int) {
|
|
return Int.wrap(0);
|
|
}
|
|
|
|
// ----
|
|
// DeclarationError 7920: (27-37): Identifier not found or not unique.
|