-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathreflect_empty_class.swift
35 lines (24 loc) · 1.03 KB
/
reflect_empty_class.swift
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
// RUN: rm -rf %t && mkdir -p %t
// RUN: %target-build-swift -lswiftSwiftReflectionTest %s -o %t/reflect_empty_class
// RUN: %target-run %target-swift-reflection-test %t/reflect_empty_class 2>&1 | FileCheck %s --check-prefix=CHECK-%target-ptrsize
// REQUIRES: objc_interop
// REQUIRES: executable_test
import SwiftReflectionTest
class EmptyClass { }
var obj = EmptyClass()
reflect(object: obj)
// CHECK-64: Reflecting an object.
// CHECK-64: Instance pointer in child address space: 0x{{[0-9a-fA-F]+}}
// CHECK-64: Type reference:
// CHECK-64: (class reflect_empty_class.EmptyClass)
// CHECK-64: Type info:
// CHECK-64: (class_instance size=16 alignment=16 stride=16 num_extra_inhabitants=0)
// CHECK-32: Reflecting an object.
// CHECK-32: Instance pointer in child address space: 0x{{[0-9a-fA-F]+}}
// CHECK-32: Type reference:
// CHECK-32: (class reflect_empty_class.EmptyClass)
// CHECK-32: Type info:
// CHECK-32: (class_instance size=12 alignment=16 stride=16 num_extra_inhabitants=0)
doneReflecting()
// CHECK-64: Done.
// CHECK-32: Done.