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 c++/85262 - ICE with redundant qualification on constructor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
crash4.C
blob
a24f0dd003c1e5296c74004dffecbe2560c765e2
1
struct Bar
2
{
3
typedef int type;
4
};
5
6
struct Foo
7
{
8
void func(void)
9
{
10
mutable Bar::type x; // { dg-error "" }
11
}
12
};