blob: c5c3b6c75a4735de269a00df9f0c979b2e7604d0 [file] [log] [blame]
Nico Weber7aa4a882012-12-14 18:22:38 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
3
4template<class T> class vector {};
5@protocol P @end
6
Douglas Gregore9d95f12015-07-07 03:57:35 +00007// expected-no-diagnostics
Nico Weber7aa4a882012-12-14 18:22:38 +00008
9vector<id<P>> v;
10vector<vector<id<P>>> v2;