mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
264 B
Swift
11 lines
264 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: %target-swift-frontend -O -emit-module -o %t %s
|
|
|
|
// At one point this triggered deserialization of enough of the stdlib to cause
|
|
// an assertion failure in serialization.
|
|
|
|
class Rdar17567391 {
|
|
let data: [Int] = []
|
|
}
|