mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
128 B
Solidity
8 lines
128 B
Solidity
enum E { A, B, C }
|
|
|
|
contract C {
|
|
uint a = E.B(1000);
|
|
}
|
|
// ----
|
|
// TypeError 5704: (46-55): This expression is not callable.
|