1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
// RUN: %empty-directory(%t)
// RUN: %target-build-swift -lswiftSwiftReflectionTest %s -o %t/reflect_Enum_values3
// RUN: %target-codesign %t/reflect_Enum_values3
// RUN: %target-run %target-swift-reflection-test %t/reflect_Enum_values3 | tee /dev/stderr | %FileCheck %s --check-prefix=CHECK%target-ptrsize --check-prefix=CHECKALL --dump-input=fail %add_num_extra_inhabitants
// REQUIRES: objc_interop
// REQUIRES: executable_test
// UNSUPPORTED: use_os_stdlib
import SwiftReflectionTest
enum EnumB<T> {
case a
case b(Int8)
case c(T)
case d(Void)
case e(Void)
case RIGHT(Int8)
case f(Int8)
case g(Void)
case LEFT(Int8, Int64)
}
class PlaceSummaryUnit<T> {
let t: EnumB<T>
init(t: EnumB<T>) { self.t = t }
}
reflect(object: PlaceSummaryUnit<Int8>(t: .RIGHT(5)))
// CHECKALL: Reflecting an object.
// CHECKALL-NEXT: Instance pointer in child address space: 0x{{[0-9a-fA-F]+}}
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_class reflect_Enum_values3.PlaceSummaryUnit
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL: Type info
// TODO: Check the type layout for 64- and 32-bit targets
reflect(enumValue: PlaceSummaryUnit<Int8>(t: .RIGHT(5)).t)
// CHECKALL: Reflecting an enum value.
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_enum reflect_Enum_values3.EnumB
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL-NEXT: Value: .RIGHT(_)
reflect(enumValue: PlaceSummaryUnit<Int8>(t: .a).t)
// CHECKALL: Reflecting an enum value.
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_enum reflect_Enum_values3.EnumB
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL-NEXT: Value: .a
reflect(enumValue: PlaceSummaryUnit<Int8>(t: .c(7)).t)
// CHECKALL: Reflecting an enum value.
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_enum reflect_Enum_values3.EnumB
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL-NEXT: Value: .c(_)
reflect(enumValue: PlaceSummaryUnit<Int8>(t: .LEFT(1,2)).t)
// CHECKALL: Reflecting an enum value.
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_enum reflect_Enum_values3.EnumB
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL-NEXT: Value: .LEFT(_)
reflect(enumValue: PlaceSummaryUnit<Int8>(t: .d(())).t)
// CHECKALL: Reflecting an enum value.
// CHECKALL-NEXT: Type reference:
// CHECKALL-NEXT: (bound_generic_enum reflect_Enum_values3.EnumB
// CHECKALL-NEXT: (struct Swift.Int8))
// CHECKALL-NEXT: Value: .d(_)
doneReflecting()
// CHECKALL: Done.
|