1 // RUN: %clang_cc1 -std=c++1z -fms-extensions -emit-llvm %s -o - -triple=i386-pc-win32 -fms-compatibility-version=19.10 | FileCheck -allow-deprecated-dag-overlap %s
2 // RUN: %clang_cc1 -std=c++1z -fms-extensions -emit-llvm %s -o - -triple=i386-pc-win32 -fms-compatibility-version=19.00 | FileCheck -allow-deprecated-dag-overlap %s
3 
4 struct S {
5     int x;
6     double y;
7 };
8 S f();
9 
10 // CHECK-DAG: "?$S1@@3US@@B"
11 const auto [x0, y0] = f();
12 // CHECK-DAG: "?$S2@@3US@@B"
13 const auto [x1, y1] = f();
14 
15 static union {
16 int a;
17 double b;
18 };
19 
20 // CHECK-DAG: "?$S4@@3US@@B"
21 const auto [x2, y2] = f();
22 
23 // CHECK-DAG: "?i1@@3V<lambda_1>@0@B"
__anon302892db0202(auto x) 24 inline const auto i1 = [](auto x) { return 0; };
25 // CHECK-DAG: "?i2@@3V<lambda_1>@0@B"
__anon302892db0302(auto x) 26 inline const auto i2 = [](auto x) { return 1; };
27 // CHECK-DAG: "??$?RH@<lambda_1>@i1@@QBE?A?<auto>@@H@Z"
28 // CHECK-DAG: "??$?RH@<lambda_1>@i2@@QBE?A?<auto>@@H@Z"
g()29 int g() {return i1(1) + i2(1); }
30