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
If you call reportIssue("foo") you will see a runtime warning on the correct line because _RuntimeWarningReporter overrides reportIssue(_:) with @_transparent.
However, if you call reportIssue(MyError(), "foo") the purple warning will instead show up at IssueReporter.swift#L88 because _RuntimeWarningReporter utilizes the default implementation of the method which doesn't use the @_transparent attribute.
Version 1.4.2, Xcode 16.0, iOS simulator
The text was updated successfully, but these errors were encountered:
If you call
reportIssue("foo")
you will see a runtime warning on the correct line because_RuntimeWarningReporter
overridesreportIssue(_:)
with@_transparent
.However, if you call
reportIssue(MyError(), "foo")
the purple warning will instead show up atIssueReporter.swift#L88
because_RuntimeWarningReporter
utilizes the default implementation of the method which doesn't use the@_transparent
attribute.Version 1.4.2, Xcode 16.0, iOS simulator
The text was updated successfully, but these errors were encountered: