1 // REQUIRES: x86-64-registered-target
2 // RUN: %clang -cc1 -triple x86_64-apple-darwin10 -g -S %s -o %t
3 // RUN: FileCheck %s < %t
4
5 //CHECK: .asciz "G"
6 //CHECK-NEXT: .long 0
7 //CHECK-NEXT: Lpubtypes_end1:
8
9 class G {
10 public:
11 void foo();
12 };
13
14 void G::foo() {
15 }
16