mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
40 lines
1.4 KiB
Swift
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.}}
|
|
}
|
|
}
|
|
|