mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
295 B
Swift
13 lines
295 B
Swift
// RUN: not --crash %target-swift-frontend %s -emit-silgen
|
|
// Distributed under the terms of the MIT license
|
|
// Test case submitted to project by https://github.com/airspeedswift (airspeedswift)
|
|
|
|
struct S<T> {
|
|
var a: [T] = []
|
|
}
|
|
extension S {
|
|
init(other: [T]) {
|
|
a = other
|
|
}
|
|
}
|