llvm-capstone/clang/test/SemaTemplate/nested-deduction-guides.cpp
Richard Smith 4fa14515ac When instantiating a deduction guide, transform its name.
Otherwise it will serve as a deduction guide for the wrong class template.

llvm-svn: 321297
2017-12-21 19:43:39 +00:00

14 lines
263 B
C++

// RUN: %clang_cc1 -std=c++17 -verify %s
// expected-no-diagnostics
template<typename T> struct A {
template<typename U> struct B {
B(...);
};
template<typename U> B(U) -> B<U>;
};
A<void>::B b = 123;
using T = decltype(b);
using T = A<void>::B<int>;