aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/290_varM_disqualified_as_keyword.sol
blob: 1b6bbae781ad7e2bf1b824f4b71e56fe312f0bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
contract test {
    function f() public {
        uintM something = 3;
        intM should = 4;
        bytesM fail = "now";
    }
}
// ----
// DeclarationError: (50-55): Identifier not found or not unique.
// DeclarationError: (79-83): Identifier not found or not unique.
// DeclarationError: (104-110): Identifier not found or not unique.