sizeof-pack.cpp 267 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 // RUN: %clang_cc1 -std=c++11 -verify %s template<int &...Ns> int f() { return sizeof...(Ns); } template int f<>(); template<typename ...T> int g() { return [...x = T()] { // expected-warning 2{{extension}} return sizeof...(x); }(); } template int g<>();