mirror of
https://github.com/apple/swift.git
synced 2025-12-25 12:15:36 +01:00
9 lines
236 B
Swift
9 lines
236 B
Swift
public class A {
|
|
public init() { }
|
|
|
|
@objc(a1) public func f1() { }
|
|
@objc(initWithInt:) public func f2(_ int: Int) { }
|
|
@objc(setFoo:) public func f3(_ i: Int) { }
|
|
@objc(objectAtIndexedSubscript:) public func f4(_ i: Int) { }
|
|
}
|