aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-04-27 20:13:18 +0800
committerchriseth <chris@ethereum.org>2018-05-17 00:32:47 +0800
commita19b516b2b0b56e2dc0f769ee96ffc871b7acee2 (patch)
tree8791979c40fc38b4c83bc6ac1fb24f083dc6be9f /test/libsolidity/syntaxTests
parent0b6eea0c557d0c987baa2d560fe3871ba3bb4a58 (diff)
downloaddexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar.gz
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar.bz2
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar.lz
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar.xz
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.tar.zst
dexon-solidity-a19b516b2b0b56e2dc0f769ee96ffc871b7acee2.zip
Add syntax tests and Changelog entry
Diffstat (limited to 'test/libsolidity/syntaxTests')
-rw-r--r--test/libsolidity/syntaxTests/types/bool_ops.sol53
1 files changed, 53 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/types/bool_ops.sol b/test/libsolidity/syntaxTests/types/bool_ops.sol
new file mode 100644
index 00000000..91033906
--- /dev/null
+++ b/test/libsolidity/syntaxTests/types/bool_ops.sol
@@ -0,0 +1,53 @@
+contract C {
+ function f(bool a, bool b) public pure {
+ bool c;
+ // OK
+ c = !a;
+ c = !b;
+ c = a == b;
+ c = a != b;
+ c = a || b;
+ c = a && b;
+
+ // Not OK
+ c = a > b;
+ c = a < b;
+ c = a >= b;
+ c = a <= b;
+ c = a & b;
+ c = a | b;
+ c = a ^ b;
+ c = ~a;
+ c = ~b;
+ c = a + b;
+ c = a - b;
+ c = -a;
+ c = -b;
+ c = a * b;
+ c = a / b;
+ c = a ** b;
+ c = a % b;
+ c = a << b;
+ c = a >> b;
+ }
+}
+// ----
+// TypeError: (231-236): Operator > not compatible with types bool and bool
+// TypeError: (250-255): Operator < not compatible with types bool and bool
+// TypeError: (269-275): Operator >= not compatible with types bool and bool
+// TypeError: (289-295): Operator <= not compatible with types bool and bool
+// TypeError: (309-314): Operator & not compatible with types bool and bool
+// TypeError: (328-333): Operator | not compatible with types bool and bool
+// TypeError: (347-352): Operator ^ not compatible with types bool and bool
+// TypeError: (366-368): Unary operator ~ cannot be applied to type bool
+// TypeError: (382-384): Unary operator ~ cannot be applied to type bool
+// TypeError: (398-403): Operator + not compatible with types bool and bool
+// TypeError: (417-422): Operator - not compatible with types bool and bool
+// TypeError: (436-438): Unary operator - cannot be applied to type bool
+// TypeError: (452-454): Unary operator - cannot be applied to type bool
+// TypeError: (468-473): Operator * not compatible with types bool and bool
+// TypeError: (487-492): Operator / not compatible with types bool and bool
+// TypeError: (506-512): Operator ** not compatible with types bool and bool
+// TypeError: (526-531): Operator % not compatible with types bool and bool
+// TypeError: (545-551): Operator << not compatible with types bool and bool
+// TypeError: (565-571): Operator >> not compatible with types bool and bool