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