mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The diagnostics/remarks out of the ModularizationError wrapped in a TypeError (eg. coming from resolveCrossReference) is otherwise just dropped but could help better understand C/C++ interop issues.
8 lines
115 B
Swift
8 lines
115 B
Swift
import CxxLib
|
|
|
|
open class Window {
|
|
open func queryInterface(_ iid: IID) -> Int32? {
|
|
return nil
|
|
}
|
|
}
|