From 0d746d07d6fb31637f949f457a15e1c944973dd1 Mon Sep 17 00:00:00 2001 From: Alex Hansen Date: Tue, 13 Aug 2024 12:55:24 -0700 Subject: [PATCH] Export Stdlib AND (#1834) This was supposed to be exported, but twas not... --- library/std/src/intrinsic.qs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/intrinsic.qs b/library/std/src/intrinsic.qs index 52f021850f..3734c8a0c0 100644 --- a/library/std/src/intrinsic.qs +++ b/library/std/src/intrinsic.qs @@ -1155,5 +1155,5 @@ namespace Microsoft.Quantum.Intrinsic { body intrinsic; } - export CCNOT, CNOT, Exp, H, I, M, Measure, R, R1, R1Frac, Reset, ResetAll, RFrac, Rx, Rxx, Ry, Ryy, Rz, Rzz, S, SWAP, T, X, Y, Z, Message; + export AND, CCNOT, CNOT, Exp, H, I, M, Measure, R, R1, R1Frac, Reset, ResetAll, RFrac, Rx, Rxx, Ry, Ryy, Rz, Rzz, S, SWAP, T, X, Y, Z, Message; }