forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftObjectNSObject.swift
38 lines (31 loc) · 1.2 KB
/
SwiftObjectNSObject.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
//===--- SwiftObjectNSObject.swift - Test SwiftObject's NSObject interop --===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
// RUN: rm -rf %t && mkdir -p %t
//
// RUN: %target-clang %S/Inputs/SwiftObjectNSObject/SwiftObjectNSObject.m -c -o %t/SwiftObjectNSObject.o -g
// RUN: %target-build-swift %s -I %S/Inputs/SwiftObjectNSObject/ -Xlinker %t/SwiftObjectNSObject.o -o %t/SwiftObjectNSObject
// RUN: %target-run %t/SwiftObjectNSObject
// REQUIRES: executable_test
// REQUIRES: objc_interop
import Foundation
class C {
@objc func cInstanceMethod() { }
@objc class func cClassMethod() { }
}
class D : C {
@objc func dInstanceMethod() { }
@objc class func dClassMethod() { }
}
@_silgen_name("TestSwiftObjectNSObject")
func TestSwiftObjectNSObject(c: C, _ d: D)
TestSwiftObjectNSObject(C(), D())
// does not return