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
operation Main() : Unit {
Microsoft.Quantum.Core.RangeStart();
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ name error: `Microsoft.Quantum.Core.RangeStart` not found
Microsoft.Quantum.Diagnostics.DumpMachine();
}
Here, Microsoft.Quantum.Diagnostics is reexported in legacy_api.qs as a namespace, which resolves fine, but Microsoft.Quantum.Core.RangeStart, which is reexported by its item name, does not resolve.
The text was updated successfully, but these errors were encountered:
Works around #1955 in the libraries we publish by reexporting the items
under an alias. This change should make no difference to the intended
public API of the library.
Here,
Microsoft.Quantum.Diagnostics
is reexported in legacy_api.qs as a namespace, which resolves fine, butMicrosoft.Quantum.Core.RangeStart
, which is reexported by its item name, does not resolve.The text was updated successfully, but these errors were encountered: