mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
6 lines
300 B
Swift
6 lines
300 B
Swift
// RUN: not %target-swift-frontend -typecheck -primary-file %s -debug-generic-signatures 2>&1 | %FileCheck %s
|
|
|
|
// CHECK-LABEL: .hexEncodeBytes@
|
|
// CHECK-NEXT: <T where T : Collection, T.[Sequence]Element == UInt8>
|
|
func hexEncodeBytes<T: Collection>(_ bytes: T) where T.Generator.Element == UInt8 { }
|