mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
220 B
Swift
13 lines
220 B
Swift
// RUN: %target-swift-frontend %s -emit-ir
|
|
|
|
// https://github.com/apple/swift/issues/43445
|
|
|
|
public class A <T> {
|
|
public init() {}
|
|
}
|
|
|
|
public class B : A <B.C> {
|
|
public struct C { }
|
|
public override init() {}
|
|
}
|