// RUN: %clang_cc1 -fsyntax-only -verify %s template T&& create(); template void test() { T t(create()...); // expected-error{{variable has incomplete type 'int[]'}} (void) t; } struct A; int main() { test(); // expected-note {{in instantiation of function template specialization 'test' requested here}} }