blob: 612c5e2d6e2592adb68e1319a06858aa12a25245 [file] [log] [blame]
// PRMS Id: 6267
// Special g++ Options: -fthis-is-variable -fno-exceptions
struct A {
int i;
A() { i = 2; }
};
main()
{
A *p = new A ();
}