blob: fd542a8bb0a6dfd240df6b63ce10f5774d3c5514 [file] [log] [blame]
David Blaikie940ca4d2013-06-21 21:03:11 +00001// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2
3namespace PR16214_1 {
4// CHECK: [[PR16214_1:![0-9]*]] = {{.*}} [ DW_TAG_namespace ] [PR16214_1]
5// CHECK: = metadata !{i32 {{[0-9]*}}, metadata !{{[0-9]*}}, metadata [[PR16214_1]], {{.*}} ; [ DW_TAG_structure_type ] [foo] {{.*}} [def]
6struct foo {
7 int i;
8};
9
10typedef foo bar;
11
12bar *f;
13bar g;
14}