mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
177 B
Swift
10 lines
177 B
Swift
@_exported import AppKit
|
|
|
|
extension String {
|
|
public static func someFactoryMethod() -> Int { return 0 }
|
|
}
|
|
|
|
extension String {
|
|
static func someMethod() -> Int { return 0 }
|
|
}
|