1 // RUN: %clang_cc1 -std=c++11 %s -verify
2 // expected-no-diagnostics
7 template <typename Arg0
, typename
... Args
>
8 void_type(Arg0
&&, Args
&&...) { }
13 template <typename
... Args
>
14 void_type2(Args
&&...) { }
19 void_type v1
= atom();
20 void_type2 v2
= atom();