Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
31ccb51a7f1b6fddaa684095d78c4532598cf51d
/
.
/
clang
/
test
/
Parser
/
objcxx11-protocol-in-template.mm
blob: c5c3b6c75a4735de269a00df9f0c979b2e7604d0 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
template
<
class
T
>
class
vector
{};
@protocol
P
@end
// expected-no-diagnostics
vector
<
id
<
P
>>
v
;
vector
<
vector
<
id
<
P
>>>
v2
;