Max Seelemann

Results 6 comments of Max Seelemann

I also removed some dead code that Xcode warned about and fixed a return value for the same reason.

> What parts of API were you able to verify to work inside an extension? Linking the library to a framework instead of an app will also generate the warning....

"extension-safe API" refers to certain APIs that must not be called in extensions, most notably `NSApplication` and `NSWorkspace`. Since the framework isn't using any of these, it's safe to enable...

Forgot to send you this PR with fixes from MacMark.

Yes, I've since found out this is also happening with primitive types: ```swift @Test func run() throws { let a: String? var b: String? b = try #require(a) // warning:...

Is there any way to push this? With swift-testing, this would be a welcome addition, as test arguments must be collections. With this conformance, we could pass strides directly: ```swift...