mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
6 lines
278 B
Solidity
6 lines
278 B
Solidity
contract C {
|
|
function constructor();
|
|
}
|
|
// ----
|
|
// ParserError 3323: (26-37): This function is named "constructor" but is not the constructor of the contract. If you intend this to be a constructor, use "constructor(...) { ... }" without the "function" keyword to define it.
|