blob: 469c86d56209ca111b01714920da510fb3ee5281 [file] [log] [blame]
Bill Wendlingff573072019-01-27 07:24:03 +00001// RUN: %clang_cc1 -std=c++17 -fms-extensions -triple=x86_64-pc-win32 -verify %s
2// expected-no-diagnostics
3
4// PR40395 - ConstantExpr shouldn't cause the template object to infinitely
5// expand.
6struct _GUID {};
7struct __declspec(uuid("{AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA}")) B {};
8
9template <const _GUID* piid>
10struct A {
11 virtual void baz() { A<piid>(); }
12};
13
14void f() {
15 A<&__uuidof(B)>();
16}