mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
179 B
Solidity
8 lines
179 B
Solidity
error E();
|
|
|
|
contract C {
|
|
bytes4 t = E().selector;
|
|
}
|
|
// ----
|
|
// TypeError 9582: (40-52): Member "selector" not found or not visible after argument-dependent lookup in tuple().
|