f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
15 lines
331 B
C++
15 lines
331 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s -fexceptions -std=c++11 -g | FileCheck %s
|
|
|
|
struct D {
|
|
D();
|
|
D(const D&);
|
|
int x;
|
|
int d(int x);
|
|
};
|
|
int D::d(int x) {
|
|
[=] {
|
|
return this->x;
|
|
}();
|
|
}
|
|
|
|
// CHECK: {{.*}} [ DW_TAG_member ] [this] [line 11, size 64, align 64, offset 0] [private] [from ]
|