view gcc/testsuite/g++.dg/torture/pr34651.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */

typedef bool Bool;
struct CString {
    CString (const char * =__null);
    CString & operator += (const CString &);
};
struct THotKey {
   short Key;
   Bool Control;
   Bool Shift;
   Bool Alt;
};
THotKey m_HotKey;
THotKey GetHotKey () { return m_HotKey; }
void Serialize ()
{
   THotKey inHotKey (GetHotKey());
   CString outCombinaison (inHotKey.Control
			   ? ((inHotKey.Alt || inHotKey.Shift)
			      ? "ctrl+" : "ctrl")
			   : __null);
   outCombinaison += inHotKey.Alt ? inHotKey.Shift ? "alt+" : "alt" : "";
   outCombinaison += inHotKey.Shift ? "shift" : "";
}