Files
swift-mirror/test/SIL/Serialization/Inputs/def_generic.swift
Manman Ren cd971d08dd [Serializer] canonicalization of GenericSignature.
The second type of WitnessMarker for deserialized GenericSignature is null.
But the second type for parsed GenericSignature is not null, causing type
mismatch error when linking a SILFunction.

This commit ignores the second type of WitnessMarker when profiling the
GenericSignature.

rdar://17998988


Swift SVN r21178
2014-08-13 18:14:10 +00:00

7 lines
118 B
Swift

class A<T> {
typealias Element = T
func convertFromArrayLiteral(elements: Element...) -> A {
return A()
}
}