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