mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
252 B
Swift
12 lines
252 B
Swift
// {"kind":"emit-silgen","signature":"swift::Lowering::SILGenModule::useConformance(swift::ProtocolConformanceRef)"}
|
|
// RUN: not %target-swift-frontend -emit-silgen %s
|
|
protocol a {
|
|
}
|
|
struct b<c: a> {
|
|
}
|
|
extension [b<Int>] {
|
|
func d() {
|
|
first
|
|
}
|
|
}
|