mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use quote function for all errors/warnings
This commit is contained in:
@@ -5,4 +5,4 @@ contract A {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (88-96): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|
||||
// TypeError: (88-96): Function declared as "view", but this expression (potentially) modifies the state and thus requires non-payable (the default) or "payable".
|
||||
|
||||
@@ -11,7 +11,7 @@ contract B is A {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (109-112): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (109-119): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (188-191): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (188-194): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (109-112): Function declared as "pure", but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (109-119): Function declared as "pure", but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (188-191): Function declared as "pure", but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
// TypeError: (188-194): Function declared as "pure", but this expression (potentially) reads from the environment or state and thus requires "view".
|
||||
|
||||
Reference in New Issue
Block a user