1contract C {
2    bool payable a;
3    string payable b;
4    int payable c;
5    int256 payable d;
6    uint payable e;
7    uint256 payable f;
8    bytes1 payable g;
9    bytes payable h;
10    bytes32 payable i;
11    fixed payable j;
12    fixed80x80 payable k;
13    ufixed payable l;
14    ufixed80x80 payable m;
15}
16// ----
17// ParserError 9106: (22-29): State mutability can only be specified for address types.
18// ParserError 9106: (44-51): State mutability can only be specified for address types.
19// ParserError 9106: (63-70): State mutability can only be specified for address types.
20// ParserError 9106: (85-92): State mutability can only be specified for address types.
21// ParserError 9106: (105-112): State mutability can only be specified for address types.
22// ParserError 9106: (128-135): State mutability can only be specified for address types.
23// ParserError 9106: (150-157): State mutability can only be specified for address types.
24// ParserError 9106: (171-178): State mutability can only be specified for address types.
25// ParserError 9106: (194-201): State mutability can only be specified for address types.
26// ParserError 9106: (215-222): State mutability can only be specified for address types.
27// ParserError 9106: (241-248): State mutability can only be specified for address types.
28// ParserError 9106: (263-270): State mutability can only be specified for address types.
29// ParserError 9106: (290-297): State mutability can only be specified for address types.
30