Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Incomplete

11 struct Incomplete; // expected-note 2 {{forward declaration of 'Incomplete'}}
36 // ptr -> incomplete
37 (void)dynamic_cast<Incomplete*>((A*)0); // expected-error {{'Incomplete' is an incomplete type}}
38 // incomplete -> ptr
39 (void)dynamic_cast<A*>((Incomplete*)0); // expected-error {{'Incomplete' is an incomplete type}}