mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
893 B
Solidity
30 lines
893 B
Solidity
contract c1 {
|
|
function f() payable payable {}
|
|
}
|
|
contract c2 {
|
|
function f() view view {}
|
|
}
|
|
contract c3 {
|
|
function f() pure pure {}
|
|
}
|
|
contract c4 {
|
|
function f() pure view {}
|
|
}
|
|
contract c5 {
|
|
function f() payable view {}
|
|
}
|
|
contract c6 {
|
|
function f() pure payable {}
|
|
}
|
|
contract c7 {
|
|
function f() view payable {}
|
|
}
|
|
// ----
|
|
// ParserError 9680: (39-46): State mutability already specified as "payable".
|
|
// ParserError 9680: (88-92): State mutability already specified as "view".
|
|
// ParserError 9680: (134-138): State mutability already specified as "pure".
|
|
// ParserError 9680: (180-184): State mutability already specified as "pure".
|
|
// ParserError 9680: (229-233): State mutability already specified as "payable".
|
|
// ParserError 9680: (275-282): State mutability already specified as "pure".
|
|
// ParserError 9680: (324-331): State mutability already specified as "view".
|