Files
swift-mirror/test/ClangImporter/AppKit_test.swift
Henrik G. Olsson cbc0ec3b88 Add -verify-ignore-unrelated where necessary (NFC)
These are tests that fail in the next commit without this flag. This
does not add -verify-ignore-unrelated to all tests with -verify, only
the ones that would fail without it. This is NFC since this flag is
currently a no-op.
2025-10-04 14:19:52 -07:00

40 lines
1.4 KiB
Swift

// RUN: %target-typecheck-verify-swift -verify-ignore-unrelated %clang-importer-sdk
// REQUIRES: OS=macosx
import AppKit
class MyDocument : NSDocument {
override func read(from url: URL, ofType type: String) throws {
try super.read(from: url, ofType: type)
}
override func write(to url: URL, ofType type: String) throws {
try super.write(to: url, ofType: type)
}
}
func test(_ url: URL, controller: NSDocumentController) {
try! NSDocument(contentsOf: url, ofType: "") // expected-warning{{result of 'NSDocument' initializer is unused}}
try! MyDocument(contentsOf: url, ofType: "") // expected-warning{{result of 'NSDocument' initializer is unused}}
try! controller.makeDocument(withContentsOf: url, ofType: "")
}
extension NSBox {
func foo() {
print("abc" as NSString) // expected-warning {{use of 'print' treated as a reference to instance method in class 'NSView'}}
// expected-note@-1 {{use 'self.' to silence this warning}} {{5-5=self.}}
// expected-note@-2 {{use 'Swift.' to reference the global function}} {{5-5=Swift.}}
}
}
class MyView : NSView {
func foo() {
print("abc" as NSString) // expected-warning {{use of 'print' treated as a reference to instance method in class 'NSView'}}
// expected-note@-1 {{use 'self.' to silence this warning}} {{5-5=self.}}
// expected-note@-2 {{use 'Swift.' to reference the global function}} {{5-5=Swift.}}
}
}