You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
349 B
11 lines
349 B
// RUN: %clang_cc1 -debug-info-kind=limited -triple %itanium_abi_triple \
|
|
// RUN: -fdebug-prefix-map=%S=/SOURCE_ROOT %s -emit-llvm -o - | FileCheck %s
|
|
|
|
template <typename T> void b(T) {}
|
|
void c() {
|
|
// CHECK: !DISubprogram(name: "b<(lambda at
|
|
// CHECK-SAME: SOURCE_ROOT
|
|
// CHECK-SAME: [[@LINE+1]]:{{[0-9]+}})>"
|
|
b([]{});
|
|
}
|