mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 13:35:42 -04:00

Otherwise it will serve as a deduction guide for the wrong class template. llvm-svn: 321297
14 lines
263 B
C++
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>;
|