blob: f6c391f9e60b056faf32a90febee5087646d6696 [file] [log] [blame]
// Try with and without whole module optimization
// RUN: %target-build-swift %S/library.swift %S/main.swift
// RUN: %target-build-swift -whole-module-optimization %S/library.swift %S/main.swift
// REQUIRES: executable_test
// REQUIRES: objc_interop
import CoreGraphics
protocol MyPoint {
associatedtype FloatType
var x: FloatType { get set }
var y: FloatType { get set }
}
extension CGPoint: MyPoint {}
// Dummy statement
_ = ()