solidity/test/libsolidity/syntaxTests/using/using_non_function.sol

7 lines
131 B
Solidity
Raw Normal View History

2021-10-11 08:16:52 +00:00
contract C {
function() internal pure x;
using {x} for uint;
}
// ----
// TypeError 8187: (56-57): Expected function name.