aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error13.C
blob: 9bce98d7fc86d56d3a42c0ea19fa9fb8b15c3c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-options "-fshow-column" }
// PR c++/13975

public: // { dg-error "1:expected unqualified-id before 'public'" }

int i;

protected: // { dg-error "1:expected unqualified-id before 'protected'" }

int j;

private: // { dg-error "1:expected unqualified-id before 'private'" }

int k;