You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Referencing hidden, custom operations in user-written code actually works and breaks compilation 🙂
This issue has low priority, you basically have to be a developer of this app to actually know you can break the compiler this way. Also, you get the "There has been an issue while processing your request." message in production anyway, so no big deal.
Code to reproduce:
namespace Test {
open Microsoft.Quantum.Intrinsic;
@EntryPoint()
operation Main(): Unit {
using ((q, qs) = (Qubit(), Qubit[3])) {
TagAllocation("wtf", true);
I(q);
ResetAll(qs);
}
}
}
The text was updated successfully, but these errors were encountered:
Referencing hidden, custom operations in user-written code actually works and breaks compilation 🙂
This issue has low priority, you basically have to be a developer of this app to actually know you can break the compiler this way. Also, you get the "There has been an issue while processing your request." message in production anyway, so no big deal.
Code to reproduce:
The text was updated successfully, but these errors were encountered: