Skip to content

Commit ce2a310

Browse files
committed
Gardening: Migrate test suite to GH issues: Inputs
1 parent 10c06e8 commit ce2a310

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

test/Inputs/conditional_conformance_basic_conformances.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,11 @@ func dynamicCastToP1(_ value: Any) -> P1? {
326326
return value as? P1
327327
}
328328

329+
// https://github.com/apple/swift/issues/49649
330+
329331
protocol P4 {}
330332
typealias P4Typealias = P4
331333
protocol P5 {}
332334

333-
struct SR7101<T> {}
334-
extension SR7101 : P5 where T == P4Typealias {}
335+
struct S_49649<T> {}
336+
extension S_49649 : P5 where T == P4Typealias {}

test/Inputs/conditional_conformance_basic_conformances_future.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,11 @@ func dynamicCastToP1(_ value: Any) -> P1? {
420420
return value as? P1
421421
}
422422

423+
// https://github.com/apple/swift/issues/49649
424+
423425
protocol P4 {}
424426
typealias P4Typealias = P4
425427
protocol P5 {}
426428

427-
struct SR7101<T> {}
428-
extension SR7101 : P5 where T == P4Typealias {}
429+
struct S_49649<T> {}
430+
extension S_49649 : P5 where T == P4Typealias {}

0 commit comments

Comments
 (0)