1 // RUN: %clang_cc1 %s -pedantic -verify -fsyntax-only
3 // Test that 'private' is not parsed as an address space qualifier
4 // in regular C++ mode.
7 virtual ~B() // expected-error{{expected ';' at end of declaration list}}
10 private int* i
; // expected-error{{expected ':'}}
13 void bar(private int*); //expected-error{{variable has incomplete type 'void'}} expected-error{{expected expression}}