diff --git a/test/PrintAsObjC/error.swift b/test/PrintAsObjC/error.swift index 9b48070db55..a3cb30eda20 100644 --- a/test/PrintAsObjC/error.swift +++ b/test/PrintAsObjC/error.swift @@ -7,9 +7,10 @@ import Foundation -// TODO: Ideally we'd output invalid decls regardless (so that they could eg. be used in code -// completion), but we avoid doing so for now to prevent crashes. Revisit later to handle a possibly -// invalid AST while printing the ObjectiveC header - see SR-15088. +// TODO: Ideally we'd output invalid decls regardless (so that they could eg. be +// used in code completion), but we avoid doing so for now to prevent crashes. +// Revisit later to handle a possibly invalid AST while printing the ObjectiveC +// header - see https://github.com/apple/swift/issues/57414. @objc class ErrorClass: NSObject { // CHECK: @interface ErrorClass diff --git a/test/PrintAsObjC/imported-block-typedefs.swift b/test/PrintAsObjC/imported-block-typedefs.swift index c3740ac9dcd..19fb7868a80 100644 --- a/test/PrintAsObjC/imported-block-typedefs.swift +++ b/test/PrintAsObjC/imported-block-typedefs.swift @@ -14,8 +14,8 @@ import ObjectiveC // FIXME: The imported typedefs should be printed directly as the param types, // but one level of sugar is currently lost when applying @noescape. The importer // also loses __attribute__((noescape)) for params of imported function types. - // - // + // https://github.com/apple/swift/issues/45125 + // https://github.com/apple/swift/issues/45134 // CHECK-NEXT: - (void)noescapeParam1:(SWIFT_NOESCAPE void (^ _Nonnull)(void))input; // CHECK-NEXT: - (void)noescapeParam2:(SWIFT_NOESCAPE void (^ _Nonnull)(PlainBlock _Nullable))input;