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 was archived by the owner on Dec 12, 2024. It is now read-only.
open class Tester<T> {
private var x: T?
public init (a: T) {
x = a
}
open func getIt() -> T? {
return x
}
}
This happens when trying to identify the generic depth and index of T in the function getIt. In this case, the type, Swift.Optional<T> gets identified as a generic, but the generic part is embedded and this causes problems.
The text was updated successfully, but these errors were encountered:
This happens when trying to identify the generic depth and index of
T
in the functiongetIt
. In this case, the type,Swift.Optional<T>
gets identified as a generic, but the generic part is embedded and this causes problems.The text was updated successfully, but these errors were encountered: