mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
15 lines
210 B
Swift
15 lines
210 B
Swift
import Foundation
|
|
|
|
open class Boom: NSObject {
|
|
public override required init() {
|
|
super.init()
|
|
}
|
|
}
|
|
|
|
open class Badaboom<U>: NSBoom<NSString> {
|
|
public override required init() {
|
|
super.init()
|
|
}
|
|
}
|
|
|