From 1bedd9df5d60d65e496d8f8dc95639166db23969 Mon Sep 17 00:00:00 2001 From: Max Schaefer Date: Tue, 14 Apr 2020 10:19:05 +0100 Subject: [PATCH] Fix frontend errors in `MistypedExponentiation` test. --- .../query-tests/InconsistentCode/MistypedExponentiation/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ql/test/query-tests/InconsistentCode/MistypedExponentiation/main.go b/ql/test/query-tests/InconsistentCode/MistypedExponentiation/main.go index c9eca38b021..2449ccdac62 100644 --- a/ql/test/query-tests/InconsistentCode/MistypedExponentiation/main.go +++ b/ql/test/query-tests/InconsistentCode/MistypedExponentiation/main.go @@ -26,4 +26,6 @@ func main() { // than the xor operator and so the query doesn't see a constant on the left // hand side of ^. fmt.Println(nonconst()*10 ^ 9) + + fmt.Println(mask) }