mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Extend using-for.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
function f(uint8 x) pure returns (uint) {
|
||||
return x;
|
||||
}
|
||||
function f(int8 storage x) pure returns (int) {
|
||||
return x[0];
|
||||
}
|
||||
using {f} for uint8;
|
||||
using {f} for int;
|
||||
// ----
|
||||
// DeclarationError 7920: (132-133): Identifier not found or not unique.
|
||||
Reference in New Issue
Block a user