Files
swift-mirror/test/IDE/Inputs/print_clang_header/header-to-print.h.module.printed.txt
Rintaro Ishizaki 7b3738d1d0 [SourceKit] Adjust newlines between decls
Previously, Clang modules didn't have empty lines between top-level
decls. This was inconsistent with Swift module.
2024-03-25 22:07:50 +09:00

22 lines
394 B
Plaintext

var MY_MACRO: Int32 { get }
var MACRO_DUP: 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()
}
class MyLittleCFType : _CFObject {
}