aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/LimitBalance.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/compilationTests/zeppelin/LimitBalance.sol')
-rw-r--r--test/compilationTests/zeppelin/LimitBalance.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/LimitBalance.sol b/test/compilationTests/zeppelin/LimitBalance.sol
index 40edd014..cf040097 100644
--- a/test/compilationTests/zeppelin/LimitBalance.sol
+++ b/test/compilationTests/zeppelin/LimitBalance.sol
@@ -15,7 +15,7 @@ contract LimitBalance {
* @dev Constructor that sets the passed value as a limit.
* @param _limit uint256 to represent the limit.
*/
- constructor(uint256 _limit) {
+ constructor(uint256 _limit) public {
limit = _limit;
}