mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
5 lines
199 B
Solidity
5 lines
199 B
Solidity
|
function f() pure returns (uint) { return 1337; }
|
||
|
function f() pure returns (uint) { return 42; }
|
||
|
// ----
|
||
|
// DeclarationError 1686: (0-49): Function with same name and parameter types defined twice.
|