microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/second-api-refactor

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

katas/test_cases/apply_x/Incorrect.qs

10lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4namespace Kata {
5 open Microsoft.Quantum.Intrinsic;
6
7 operation ApplyX(q : Qubit) : Unit is Adj + Ctl {
8 // Do nothing.
9 }
10}