
The commit was reverted in 346e1c43a11b8af5a818dac321f83f043862c1ec as part of the f1f0a0d8e8fdd2e534d9423b2e64c6b8aaa53aee revert.
8 lines
217 B
C++
8 lines
217 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
template <int>
|
|
class b;
|
|
class c; // expected-note{{forward declaration}}
|
|
|
|
::b<0> struct c::d // expected-error{{incomplete type}} expected-error{{expected unqualified-id}}
|