[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / clang / test / Parser / objcxx14-protocol-in-template.mm
blob36da92e251f4c5a762c917d0596af19220466702
1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++14 %s
3 template<class T> class vector {};
4 @protocol P @end
6 // expected-no-diagnostics
8 template <typename Functor> void F(Functor functor) {}
10 // Test protocol in template within lambda capture initializer context.
11 void z() {
12   id<P> x = 0;
13   (void)x;
14   F( [ x = vector<id<P>>{} ] {} );