mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
- Don't pass 'verify' since it's now the default - Update tests where diagnostics changed in a correct way to pass 'on' instead - Delete compiler_scale/explicit_requirements_perf.swift since it's not testing anything with the requirement machine
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 { }
|