Files
swift-mirror/test/SourceKit/CursorInfo/Inputs/SomeModule.swift

11 lines
240 B
Swift

/// This is SomeFunc that serves some function
/// - returns: 42
public func SomeFunc() -> Int { return 42; }
public struct XWrapper {
/// This is x, a property of XWrapper
public let x: Int
public init(x: Int) {
self.x = x
}
}