mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
6 lines
224 B
Solidity
6 lines
224 B
Solidity
type B is bool;
|
|
|
|
function suffix(B x) pure suffix returns (B) {}
|
|
// ----
|
|
// TypeError 2998: (33-36): This literal suffix function is not usable as a suffix because no literal is implicitly convertible to its parameter type.
|