Files
swift-mirror/test/Serialization/optimized.swift
Dmitri Gribenko 984210aa53 tests: replace '// RUN: rm -rf' '// RUN: mkdir' pairs with '%empty-directory(...)'
These changes were made using a script.
2017-06-04 11:08:39 -07:00

10 lines
255 B
Swift

// RUN: %empty-directory(%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] = []
}