Files
swift-mirror/validation-test/compiler_crashers_2_fixed/rdar69073431.swift
2021-03-17 17:25:41 -04:00

12 lines
263 B
Swift

// RUN: %target-swift-frontend -emit-ir %s
// REQUIRES: OS=macosx
import Combine
@available(macOS 10.15, *)
extension Publishers.Share {
func foo<A: Publisher, B: Publisher>() where Upstream == Publishers.FlatMap<A, B>, B.Output == UInt8 {
}
}