1// REQUIRES: x86-64-registered-target
2// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -g -fno-limit-debug-info -S %s -o %t
3// RUN: FileCheck %s < %t
4
5// FIXME: This testcase shouldn't rely on assembly emission.
6//CHECK: Lpubtypes_begin[[SECNUM:[0-9]:]]
7//CHECK:         .asciz   "G"
8//CHECK-NEXT:    .long   0
9//CHECK-NEXT: Lpubtypes_end[[SECNUM]]
10
11class G {
12public:
13	void foo();
14};
15
16void G::foo() {
17}
18