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
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
parse1.C
blob
ce8e4cef5b928f268422661735e4e804480eb61f
1
// { dg-do assemble }
2
// GROUPS passed parsing
3
class Try {
4
private:
5
char s;
6
public:
7
// an escaped double-quote should not call consume_string inside
8
// reinit_parse_for_block
9
void mf() { s='\"'; }
10
};
11
12
int main()
13
{
14
Try x;
15
x.mf();
16
}
17