blob: 8fddc988825509048fe362abe54f7349af306d2b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
contract C {
uint s;
function f() public constant returns (uint) {
return s;
}
}
// ----
// ParserError: (43-51): The state mutability modifier "constant" was removed in version 0.5.0. Use "view" or "pure" instead.
|