2018-09-06 16:59:50 +00:00
|
|
|
contract C {
|
|
|
|
function a(bool payable) public pure {}
|
|
|
|
function b(string payable) public pure {}
|
|
|
|
function c(int payable) public pure {}
|
|
|
|
function d(int256 payable) public pure {}
|
|
|
|
function e(uint payable) public pure {}
|
|
|
|
function f(uint256 payable) public pure {}
|
|
|
|
function g(byte payable) public pure {}
|
|
|
|
function h(bytes payable) public pure {}
|
|
|
|
function i(bytes32 payable) public pure {}
|
|
|
|
function j(fixed payable) public pure {}
|
|
|
|
function k(fixed80x80 payable) public pure {}
|
|
|
|
function l(ufixed payable) public pure {}
|
|
|
|
function m(ufixed80x80 payable) public pure {}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 9106: (33-40): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (79-86): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (122-129): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (168-175): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (212-219): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (259-266): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (303-310): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (348-355): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (395-402): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (440-447): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (490-497): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (536-543): State mutability can only be specified for address types.
|
|
|
|
// ParserError 9106: (587-594): State mutability can only be specified for address types.
|