mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-18 06:10:37 +00: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>;
|