You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
263 B

// 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>;