reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / parse1.C
blobce8e4cef5b928f268422661735e4e804480eb61f
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='\"'; }
12 int main()
14   Try x;
15   x.mf();