repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr28238.C
blob
97e388fbd321cb20dde5507e6f0dc7232befa63a
1
/* { dg-do compile } */
2
/* { dg-options "-O" } */
3
4
struct iterator{};
5
struct ByteIterator : iterator
6
{
7
ByteIterator (){}
8
int a[1024];
9
};
10
inline ByteIterator f ()
11
{
12
return ByteIterator ();
13
}
14
class ConfLexerCore
15
{
16
ConfLexerCore ();
17
ByteIterator m_matchStart;
18
};
19
ConfLexerCore::ConfLexerCore ()
20
: m_matchStart (f ())
21
{ }
22