mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
232 B
Swift
11 lines
232 B
Swift
// RUN: %target-swift-frontend %s -emit-ir -use-jit | %FileCheck %s
|
|
|
|
|
|
class A{}
|
|
|
|
// Check that only one copy of the type metadata table is emitted.
|
|
// CHECK: @"\01l_type_metadata_table"
|
|
// CHECK-NOT: @"\01l_type_metadata_table.1"
|
|
|
|
|