Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / temp / temp.decls / temp.variadic / p5.mm
blobd0598263e50bdb5255a33c28130cfc12bba94f60
1 // RUN: %clang_cc1 -fobjc-exceptions -fexceptions -std=c++11 -fblocks -fsyntax-only -verify %s
3 template<typename...Types>
4 void f(Types ...values) {
5   for (id x in values) { } // expected-error {{expression contains unexpanded parameter pack 'values'}}
6   @synchronized(values) { // expected-error {{expression contains unexpanded parameter pack 'values'}}
7     @throw values; // expected-error {{expression contains unexpanded parameter pack 'values'}}
8   }