Files
swift-mirror/validation-test/Serialization/SR8045.swift
Jordan Rose 8abaaea2c9 Keep more ParenType parameter flags when canonicalizing function types (#17369)
This will also preserve @escaping and @autoclosure, which were previously
dropped. This could lead to mismatches between expected and actual
canonical types for serialization cross-references.

https://bugs.swift.org/browse/SR-8045, likely others
2018-06-20 16:35:55 -07:00

7 lines
232 B
Swift

// RUN: %empty-directory(%t)
// RUN: %target-build-swift -emit-module-path %t/main.swiftmodule -module-name main %s %S/Inputs/SR8045-other.swift
public class Sub: Super {
public override func foo(_ f: @escaping Alias<Bool>) {}
}