mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
25 lines
334 B
Plaintext
25 lines
334 B
Plaintext
|
|
var MY_MACRO: Int32 { get }
|
|
|
|
func doSomethingInHead(_ arg: Int32)
|
|
|
|
class BaseInHead {
|
|
class func doIt(_ arg: Int32)
|
|
func doIt(_ arg: Int32)
|
|
}
|
|
|
|
/// Awesome name.
|
|
class SameName {
|
|
}
|
|
protocol SameNameProtocol {
|
|
}
|
|
|
|
extension BaseInHead {
|
|
class func doItInCategory()
|
|
func doItInCategory()
|
|
}
|
|
|
|
protocol Superproto {
|
|
func lala()
|
|
}
|