repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.law
/
operators19.C
blob
c9707beb194467849119a807d4cf4a8c73912ef8
1
// { dg-do assemble }
2
// GROUPS passed operators
3
// opr-ampr file
4
// From: Jarkko Sonninen <Jarkko.Sonninen@lut.fi>
5
// Date: Thu, 7 Oct 1993 08:25:26 +0200
6
// Subject: type of base class member
7
// Message-ID: <199310070625.AA18653@kaisa.it.lut.fi>
8
9
class A {
10
public:
11
int j;
12
};
13
14
class B: public A {
15
public:
16
B () {
17
!(A::j);
18
}
19
};