llvm-project/clang/test/SemaOpenCLCXX/private-access-specifier.cpp
Anastasia Stulova 314fab6d7f [PR41247] Fixed parsing of private keyword in C++.
Fixed bug in C++ to prevent parsing 'private' as a
valid address space qualifier.

Differential Revision: https://reviews.llvm.org/D59874

llvm-svn: 357162
2019-03-28 11:47:14 +00:00

14 lines
433 B
C++

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