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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
crash34.C
blob
c320ccbd6e4c84e63346b74815d06c6b50e960f4
1
// { dg-do assemble { xfail *-*-* } }
2
// Origin: Jakub Jelinek <jakub@redhat.com>
3
4
5
class v
6
{
7
double x, y;
8
public:
9
v();
10
};
11
12
class w : public v {
13
public :
14
static const w X;
15
w();
16
};
17
18
void bar(w x);
19
20
void foo()
21
{
22
bar(w::X);
23
}