1// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm-only -std=c++14 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2
3// CHECK: [[EMPTY:![0-9]*]] = !{}
4// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "foo",
5// CHECK-SAME:             elements: [[EMPTY]]
6// FIXME: The context of this definition should be the CU/file scope, not the class.
7// CHECK: !DISubprogram(name: "func", {{.*}} scope: !"_ZTS3foo"
8// CHECK-SAME:          type: [[SUBROUTINE_TYPE:![0-9]*]]
9// CHECK-SAME:          isDefinition: true
10// CHECK-SAME:          declaration: [[FUNC_DECL:![0-9]*]]
11// CHECK: [[SUBROUTINE_TYPE]] = !DISubroutineType(types: [[TYPE_LIST:![0-9]*]])
12// CHECK: [[TYPE_LIST]] = !{[[INT:![0-9]*]]}
13// CHECK: [[INT]] = !DIBasicType(name: "int"
14// CHECK: [[FUNC_DECL]] = !DISubprogram(name: "func",
15// CHECK-SAME:                          scope: !"_ZTS3foo"
16// CHECK-SAME:                          type: [[SUBROUTINE_TYPE]]
17// CHECK-SAME:                          isDefinition: false
18
19struct foo {
20  static auto func();
21};
22
23foo f;
24
25auto foo::func() {
26  return 1;
27}
28