// RUN: %target-typecheck-verify-swift struct ConformsToError {} _ = ConformsToError() struct ConformsToEquatable {} _ = ConformsToEquatable() struct ConformsToComparable {} _ = ConformsToComparable() struct ConformsToHashable {} _ = ConformsToHashable() if #available(SwiftStdlib 5.5, *) { struct ConformsToIdentifiable {} _ = ConformsToIdentifiable() } if #available(SwiftStdlib 5.9, *) { struct ConformsToCodable {} _ = ConformsToCodable() }