aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/455_shadowing_builtins_with_return_parameters.sol
blob: 7931053fc1c631e6186987d34e3263ade8284f91 (plain) (tree)
1
2
3
4
5
6
7






                                                               
contract C {
    function f() pure public returns (uint require) {
        require = 2;
    }
}
// ----
// Warning: (51-63): This declaration shadows a builtin symbol.