mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +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() {}
|
|
}
|