mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
8 lines
129 B
Swift
8 lines
129 B
Swift
public protocol Foo {}
|
|
extension Bool: Foo {}
|
|
|
|
@_rawLayout(like: T)
|
|
public struct Fred<T: Foo>: ~Copyable {
|
|
public init() {}
|
|
}
|