Erik Pilkington | c587164 | 2018-09-10 21:54:04 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | |||||
3 | template <int> | ||||
4 | class b; | ||||
5 | class c; // expected-note{{forward declaration}} | ||||
6 | |||||
7 | ::b<0> struct c::d // expected-error{{incomplete type}} expected-error{{cannot combine}} expected-error{{expected unqualified-id}} |