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
/
expr
/
cond4.C
blob
fff5c8b185dc7e66f4ec512c1e2e067e6e7747f6
1
// PR c++/13971
2
3
struct QChar {
4
static const QChar null;
5
};
6
struct QCharRef {
7
operator QChar() const;
8
};
9
struct QString {
10
QCharRef operator[](int i);
11
};
12
13
QChar fillParagraph(QString s, int psi) {
14
return psi ? QChar::null : s[psi];
15
}
16