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
PR testsuite/86649
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
expr
/
cast7.C
blob
c948919e9450fa4a6ddd0a9baa1064ee8874680c
1
// PR c++/27177
2
3
struct X {};
4
5
struct Y : virtual X {};
6
struct Z : virtual X {};
7
8
struct A : Y, Z {};
9
10
struct B : A
11
{
12
static const int i = sizeof((Z*)(B*)0);
13
};