annotate clang/test/SemaTemplate/instantiate-dependent-nested-name.cpp @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
anatofuz
parents:
diff changeset
2 // expected-no-diagnostics
anatofuz
parents:
diff changeset
3 // PR4382
anatofuz
parents:
diff changeset
4 template<typename T> struct X { static const T A = 1; };
anatofuz
parents:
diff changeset
5 template<typename T, bool = X<T>::A> struct Y { typedef T A; };
anatofuz
parents:
diff changeset
6 template<typename T> struct Z { typedef typename Y<T>::A A; };
anatofuz
parents:
diff changeset
7 extern int x;
anatofuz
parents:
diff changeset
8 extern Z<int>::A x;