mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
216 B
Swift
15 lines
216 B
Swift
@inline(__always)
|
|
func internalFunction() {}
|
|
|
|
@usableFromInline
|
|
func versionedFunction() {}
|
|
|
|
public protocol Shape {
|
|
func draw()
|
|
var area: Float { get }
|
|
}
|
|
|
|
public class ShapeManager {
|
|
public func manage() {}
|
|
}
|