Files
swift-mirror/test/Serialization/default-witness-table-deserialization.swift
2017-10-21 19:18:15 -07:00

13 lines
366 B
Swift

// RUN: %target-swift-frontend %s -module-name Test -emit-module -emit-module-path - -o /dev/null | %target-sil-opt -enable-sil-verify-all -disable-sil-linking -module-name="Test" | %FileCheck %s
// Check that default witness tables are properly deserialized.
// rdar://problem/29173229
// CHECK: import Swift
public class MyType {
}
public protocol MyProto {
}