// RUN: %clang_cc1 -std=c++1z -verify %s // expected-no-diagnostics namespace std_example { template struct S { T data; }; template S(U) -> S; struct A { using type = short; operator type(); }; S x{A()}; }