blob: 30f5fd934bfef15913b885c3bba5e89d774718a5 [file] [log] [blame]
Devang Patel2b542992011-03-23 16:30:03 +00001// RUN: %clangxx -O0 -g %s -c -o %t.o
2// RUN: %test_debuginfo %s %t.o
3// Radar 9168773
4
5// DEBUGGER: ptype A
6// CHECK: type = struct A {
7// CHECK-NEXT: int MyData;
8// CHECK-NEXT: }
9class A;
10class B {
11public:
12 void foo(const A *p);
13};
14
15B iEntry;
16
17class A {
18public:
19 int MyData;
20};
21
22A irp;
23