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;