forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppKit_test.swift
39 lines (30 loc) · 1.25 KB
/
AppKit_test.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// RUN: %target-parse-verify-swift %clang-importer-sdk
// REQUIRES: OS=macosx
import AppKit
class MyDocument : NSDocument {
override func readFromURL(URL: NSURL, ofType type: String) throws {
try super.readFromURL(URL, ofType: type)
}
override func writeToURL(URL: NSURL, ofType type: String) throws {
try super.writeToURL(URL, ofType: type)
}
}
func test(URL: NSURL, controller: NSDocumentController) {
try! NSDocument(contentsOfURL: URL, ofType: "") // expected-warning{{unused}}
try! MyDocument(contentsOfURL: URL, ofType: "")
try! controller.makeDocumentWithContentsOfURL(URL, ofType: "")
}
extension NSBox {
func foo() {
print("abc") // 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") // 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.}}
}
}