mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
defaulting to v0.5.0 behaviour of unary + operator (disallow); also adapting all tests to it
This commit is contained in:
committed by
chriseth
parent
4547b32348
commit
8ca69ed8d8
+1
-1
@@ -6,4 +6,4 @@ contract test {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning: (70-75): Use of unary + is deprecated.
|
||||
// SyntaxError: (70-75): Use of unary + is disallowed.
|
||||
|
||||
-10
@@ -1,10 +0,0 @@
|
||||
pragma experimental "v0.5.0";
|
||||
contract test {
|
||||
function f() pure public {
|
||||
ufixed16x2 a = +3.25;
|
||||
fixed16x2 b = -3.25;
|
||||
a; b;
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// SyntaxError: (100-105): Use of unary + is deprecated.
|
||||
-9
@@ -1,9 +0,0 @@
|
||||
pragma experimental "v0.5.0";
|
||||
contract test {
|
||||
function f(uint x) pure public {
|
||||
uint y = +x;
|
||||
y;
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// SyntaxError: (100-102): Use of unary + is deprecated.
|
||||
+1
-1
@@ -5,4 +5,4 @@ contract test {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning: (70-72): Use of unary + is deprecated.
|
||||
// SyntaxError: (70-72): Use of unary + is disallowed.
|
||||
Reference in New Issue
Block a user