Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0097-rdar32077627.swift
Doug Gregor fe7ba8b79b [GSB] Pull typo correction for nested types into delayed reqs handling.
Rather than performing typo correction at the very end of finalize(),
do it as part of delayed requirement handling when we cannot otherwise
make progress. This is a cleaner way to cope with typo correction that
gives us a better chance of getting to a sane result.

Fixes rdar://problem/31048352 by eliminating the need for tracking the
number of unresolved potential archetypes altogether. Fixes
rdar://problem/32077627.
2017-06-19 22:47:33 -07:00

4 lines
150 B
Swift

// RUN: not %target-swift-frontend -typecheck -primary-file %s
func hexEncodeBytes<T: Collection>(_ bytes: T) where T.Generator.Element == UInt8 { }