Skip to content

Commit b5e6fb3

Browse files
committed
Gardening: Migrate test suite to GH issues: decl/nested
1 parent 6704aab commit b5e6fb3

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

test/decl/nested/type_in_type.swift

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,9 @@ class DerivedClass : BaseClass {
340340
}
341341
}
342342

343-
// https://bugs.swift.org/browse/SR-3847: Resolve members in inner types.
343+
// https://github.com/apple/swift/issues/46432
344+
// Resolve members in inner types.
345+
//
344346
// This first extension isn't necessary; we could have put 'originalValue' in
345347
// the original declaration.
346348
extension OuterNonGenericClass.InnerNonGenericBase {
@@ -372,7 +374,8 @@ extension OuterGeneric.MidGeneric where D == Int, F == String {
372374
}
373375
}
374376

375-
// https://bugs.swift.org/browse/SR-4672
377+
// https://github.com/apple/swift/issues/47249
378+
376379
protocol ExpressibleByCatLiteral {}
377380
protocol ExpressibleByDogLiteral {}
378381

@@ -393,10 +396,10 @@ func something<T>() -> T {
393396
while true {}
394397
}
395398

396-
func test() {
399+
do {
397400
let _: Claws<Kitten>.Fangs<Puppy> = pets(fur: Puppy())
398401

399-
// <https://bugs.swift.org/browse/SR-5600>
402+
// https://github.com/apple/swift/issues/48172
400403
let _: Claws.Fangs<Puppy> = pets(fur: Puppy())
401404
let _: Claws.Fangs<Puppy> = Claws<Kitten>.Fangs()
402405
let _: Claws.Fangs<Puppy> = Claws.Fangs()
@@ -410,7 +413,7 @@ func test() {
410413
// expected-note@-3 {{explicitly specify the generic arguments to fix this issue}} {{12-12=<<#A: ExpressibleByCatLiteral#>>}}
411414
}
412415

413-
// https://bugs.swift.org/browse/SR-4379
416+
// https://github.com/apple/swift/issues/46958
414417
extension OuterGeneric.MidNonGeneric {
415418
func doStuff() -> OuterGeneric {
416419
return OuterGeneric()

0 commit comments

Comments
 (0)