blob: a4fc8514b43c49c3d1e4e6299ea3069b56eab8e7 [file] [log] [blame]
@_fixed_layout
public class A<T> {
@usableFromInline typealias Element = T
@inlinable func convertFromArrayLiteral(_ elements: Element...) -> A {
return A()
}
@inlinable init() {}
@inlinable public subscript<U>(value: T) -> U? {
return nil
}
}