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
{{ message }}
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
The Microsoft.Quantum.Simulation.Common.StackTraceCollector class contains incorrect nullability metadata that can cause null reference exceptions in code that depends on stack traces in the simulation runtime. For example, the public StackTraceCollector.CallStack property can be null if StackTraceCollector.hasFailed is false; that null can propagate out via the OnException event, causing its nullability metadata to be incorrect as well.
The text was updated successfully, but these errors were encountered:
Describe the bug
The
Microsoft.Quantum.Simulation.Common.StackTraceCollector
class contains incorrect nullability metadata that can cause null reference exceptions in code that depends on stack traces in the simulation runtime. For example, the publicStackTraceCollector.CallStack
property can benull
ifStackTraceCollector.hasFailed
isfalse
; thatnull
can propagate out via theOnException
event, causing its nullability metadata to be incorrect as well.The text was updated successfully, but these errors were encountered: