mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
213 B
Swift
11 lines
213 B
Swift
// RUN: %target-build-swift -emit-ir %s
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Darwin
|
|
|
|
func getAnyValue<T>(_ opt: T?) -> T { return opt! }
|
|
|
|
qsort(getAnyValue(nil), 0, 0, getAnyValue(nil))
|