mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
244 B
Solidity
8 lines
244 B
Solidity
error E();
|
|
|
|
contract C {
|
|
function() internal pure x = E;
|
|
}
|
|
// ----
|
|
// TypeError 7407: (58-59): Type function () pure is not implicitly convertible to expected type function () pure. Special functions can not be converted to function types.
|